diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/AzSdk.RP.props b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/AzSdk.RP.props
index 0812ef19e1c8..d921ece2312d 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/AzSdk.RP.props
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/AzSdk.RP.props
@@ -1,7 +1,7 @@
- Network_2019-05-01;Network_2019-11-01;Network_2019-10-01;
+ Network_2020-01-01;Network_2019-11-01;Network_2019-10-01;
$(PackageTags);$(CommonTags);$(AzureApiTag);
\ No newline at end of file
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/EndpointsOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/EndpointsOperations.cs
index 90c1757a29b7..ffd4e82741dd 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/EndpointsOperations.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/EndpointsOperations.cs
@@ -163,7 +163,7 @@ internal EndpointsOperations(FrontDoorManagementClient client)
{
contentFilePaths.Validate();
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClient.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClient.cs
index d8636ec3a54b..54aed6c0fca7 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClient.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClient.cs
@@ -20,8 +20,6 @@ namespace Microsoft.Azure.Management.FrontDoor
using System.Linq;
using System.Net;
using System.Net.Http;
- using System.Threading;
- using System.Threading.Tasks;
///
/// FrontDoor Client
@@ -93,6 +91,16 @@ public partial class FrontDoorManagementClient : ServiceClient
public virtual IReportsOperations Reports { get; private set; }
+ ///
+ /// Gets the IFrontDoorNameAvailabilityOperations.
+ ///
+ public virtual IFrontDoorNameAvailabilityOperations FrontDoorNameAvailability { get; private set; }
+
+ ///
+ /// Gets the IFrontDoorNameAvailabilityWithSubscriptionOperations.
+ ///
+ public virtual IFrontDoorNameAvailabilityWithSubscriptionOperations FrontDoorNameAvailabilityWithSubscription { get; private set; }
+
///
/// Gets the IFrontDoorsOperations.
///
@@ -368,6 +376,8 @@ private void Initialize()
PreconfiguredEndpoints = new PreconfiguredEndpointsOperations(this);
Experiments = new ExperimentsOperations(this);
Reports = new ReportsOperations(this);
+ FrontDoorNameAvailability = new FrontDoorNameAvailabilityOperations(this);
+ FrontDoorNameAvailabilityWithSubscription = new FrontDoorNameAvailabilityWithSubscriptionOperations(this);
FrontDoors = new FrontDoorsOperations(this);
FrontendEndpoints = new FrontendEndpointsOperations(this);
Endpoints = new EndpointsOperations(this);
@@ -410,378 +420,5 @@ private void Initialize()
DeserializationSettings.Converters.Add(new TransformationJsonConverter());
DeserializationSettings.Converters.Add(new CloudErrorJsonConverter());
}
- ///
- /// Check the availability of a Front Door resource name.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// Headers that will be added to request.
- ///
- ///
- /// The cancellation token.
- ///
- ///
- /// Thrown when the operation returned an invalid status code
- ///
- ///
- /// Thrown when unable to deserialize the response
- ///
- ///
- /// Thrown when a required parameter is null
- ///
- ///
- /// Thrown when a required parameter is null
- ///
- ///
- /// A response object containing the response body and response headers.
- ///
- public async Task> CheckFrontDoorNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
- {
- if (checkFrontDoorNameAvailabilityInput == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "checkFrontDoorNameAvailabilityInput");
- }
- if (checkFrontDoorNameAvailabilityInput != null)
- {
- checkFrontDoorNameAvailabilityInput.Validate();
- }
- string apiVersion = "2020-01-01";
- // Tracing
- bool _shouldTrace = ServiceClientTracing.IsEnabled;
- string _invocationId = null;
- if (_shouldTrace)
- {
- _invocationId = ServiceClientTracing.NextInvocationId.ToString();
- Dictionary tracingParameters = new Dictionary();
- tracingParameters.Add("checkFrontDoorNameAvailabilityInput", checkFrontDoorNameAvailabilityInput);
- tracingParameters.Add("apiVersion", apiVersion);
- tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "CheckFrontDoorNameAvailability", tracingParameters);
- }
- // Construct URL
- var _baseUrl = BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Network/checkFrontDoorNameAvailability").ToString();
- List _queryParameters = new List();
- if (apiVersion != null)
- {
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
- }
- if (_queryParameters.Count > 0)
- {
- _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
- }
- // Create HTTP transport objects
- var _httpRequest = new HttpRequestMessage();
- HttpResponseMessage _httpResponse = null;
- _httpRequest.Method = new HttpMethod("POST");
- _httpRequest.RequestUri = new System.Uri(_url);
- // Set Headers
- if (GenerateClientRequestId != null && GenerateClientRequestId.Value)
- {
- _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
- }
- if (AcceptLanguage != null)
- {
- if (_httpRequest.Headers.Contains("accept-language"))
- {
- _httpRequest.Headers.Remove("accept-language");
- }
- _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage);
- }
-
-
- if (customHeaders != null)
- {
- foreach(var _header in customHeaders)
- {
- if (_httpRequest.Headers.Contains(_header.Key))
- {
- _httpRequest.Headers.Remove(_header.Key);
- }
- _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
- }
- }
-
- // Serialize Request
- string _requestContent = null;
- if(checkFrontDoorNameAvailabilityInput != null)
- {
- _requestContent = SafeJsonConvert.SerializeObject(checkFrontDoorNameAvailabilityInput, SerializationSettings);
- _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
- _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
- }
- // Set Credentials
- if (Credentials != null)
- {
- cancellationToken.ThrowIfCancellationRequested();
- await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
- }
- // Send Request
- if (_shouldTrace)
- {
- ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
- }
- cancellationToken.ThrowIfCancellationRequested();
- _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
- if (_shouldTrace)
- {
- ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
- }
- HttpStatusCode _statusCode = _httpResponse.StatusCode;
- cancellationToken.ThrowIfCancellationRequested();
- string _responseContent = null;
- if ((int)_statusCode != 200)
- {
- var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
- try
- {
- _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
- ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings);
- if (_errorBody != null)
- {
- ex.Body = _errorBody;
- }
- }
- catch (JsonException)
- {
- // Ignore the exception
- }
- ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
- ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
- if (_shouldTrace)
- {
- ServiceClientTracing.Error(_invocationId, ex);
- }
- _httpRequest.Dispose();
- if (_httpResponse != null)
- {
- _httpResponse.Dispose();
- }
- throw ex;
- }
- // Create Result
- var _result = new AzureOperationResponse();
- _result.Request = _httpRequest;
- _result.Response = _httpResponse;
- if (_httpResponse.Headers.Contains("x-ms-request-id"))
- {
- _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
- }
- // Deserialize Response
- if ((int)_statusCode == 200)
- {
- _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
- try
- {
- _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings);
- }
- catch (JsonException ex)
- {
- _httpRequest.Dispose();
- if (_httpResponse != null)
- {
- _httpResponse.Dispose();
- }
- throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
- }
- }
- if (_shouldTrace)
- {
- ServiceClientTracing.Exit(_invocationId, _result);
- }
- return _result;
- }
-
- ///
- /// Check the availability of a Front Door subdomain.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// Headers that will be added to request.
- ///
- ///
- /// The cancellation token.
- ///
- ///
- /// Thrown when the operation returned an invalid status code
- ///
- ///
- /// Thrown when unable to deserialize the response
- ///
- ///
- /// Thrown when a required parameter is null
- ///
- ///
- /// Thrown when a required parameter is null
- ///
- ///
- /// A response object containing the response body and response headers.
- ///
- public async Task> CheckFrontDoorNameAvailabilityWithSubscriptionWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
- {
- if (checkFrontDoorNameAvailabilityInput == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "checkFrontDoorNameAvailabilityInput");
- }
- if (checkFrontDoorNameAvailabilityInput != null)
- {
- checkFrontDoorNameAvailabilityInput.Validate();
- }
- if (SubscriptionId == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId");
- }
- string apiVersion = "2020-01-01";
- // Tracing
- bool _shouldTrace = ServiceClientTracing.IsEnabled;
- string _invocationId = null;
- if (_shouldTrace)
- {
- _invocationId = ServiceClientTracing.NextInvocationId.ToString();
- Dictionary tracingParameters = new Dictionary();
- tracingParameters.Add("checkFrontDoorNameAvailabilityInput", checkFrontDoorNameAvailabilityInput);
- tracingParameters.Add("apiVersion", apiVersion);
- tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "CheckFrontDoorNameAvailabilityWithSubscription", tracingParameters);
- }
- // Construct URL
- var _baseUrl = BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Network/checkFrontDoorNameAvailability").ToString();
- _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(SubscriptionId));
- List _queryParameters = new List();
- if (apiVersion != null)
- {
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
- }
- if (_queryParameters.Count > 0)
- {
- _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
- }
- // Create HTTP transport objects
- var _httpRequest = new HttpRequestMessage();
- HttpResponseMessage _httpResponse = null;
- _httpRequest.Method = new HttpMethod("POST");
- _httpRequest.RequestUri = new System.Uri(_url);
- // Set Headers
- if (GenerateClientRequestId != null && GenerateClientRequestId.Value)
- {
- _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
- }
- if (AcceptLanguage != null)
- {
- if (_httpRequest.Headers.Contains("accept-language"))
- {
- _httpRequest.Headers.Remove("accept-language");
- }
- _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage);
- }
-
-
- if (customHeaders != null)
- {
- foreach(var _header in customHeaders)
- {
- if (_httpRequest.Headers.Contains(_header.Key))
- {
- _httpRequest.Headers.Remove(_header.Key);
- }
- _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
- }
- }
-
- // Serialize Request
- string _requestContent = null;
- if(checkFrontDoorNameAvailabilityInput != null)
- {
- _requestContent = SafeJsonConvert.SerializeObject(checkFrontDoorNameAvailabilityInput, SerializationSettings);
- _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
- _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
- }
- // Set Credentials
- if (Credentials != null)
- {
- cancellationToken.ThrowIfCancellationRequested();
- await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
- }
- // Send Request
- if (_shouldTrace)
- {
- ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
- }
- cancellationToken.ThrowIfCancellationRequested();
- _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
- if (_shouldTrace)
- {
- ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
- }
- HttpStatusCode _statusCode = _httpResponse.StatusCode;
- cancellationToken.ThrowIfCancellationRequested();
- string _responseContent = null;
- if ((int)_statusCode != 200)
- {
- var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
- try
- {
- _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
- ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings);
- if (_errorBody != null)
- {
- ex.Body = _errorBody;
- }
- }
- catch (JsonException)
- {
- // Ignore the exception
- }
- ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
- ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
- if (_shouldTrace)
- {
- ServiceClientTracing.Error(_invocationId, ex);
- }
- _httpRequest.Dispose();
- if (_httpResponse != null)
- {
- _httpResponse.Dispose();
- }
- throw ex;
- }
- // Create Result
- var _result = new AzureOperationResponse();
- _result.Request = _httpRequest;
- _result.Response = _httpResponse;
- if (_httpResponse.Headers.Contains("x-ms-request-id"))
- {
- _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
- }
- // Deserialize Response
- if ((int)_statusCode == 200)
- {
- _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
- try
- {
- _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings);
- }
- catch (JsonException ex)
- {
- _httpRequest.Dispose();
- if (_httpResponse != null)
- {
- _httpResponse.Dispose();
- }
- throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
- }
- }
- if (_shouldTrace)
- {
- ServiceClientTracing.Exit(_invocationId, _result);
- }
- return _result;
- }
-
}
}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClientExtensions.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClientExtensions.cs
deleted file mode 100644
index a1f19b5ecc2a..000000000000
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorManagementClientExtensions.cs
+++ /dev/null
@@ -1,93 +0,0 @@
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License. See License.txt in the project root for
-// license information.
-//
-// Code generated by Microsoft (R) AutoRest Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is
-// regenerated.
-//
-
-namespace Microsoft.Azure.Management.FrontDoor
-{
- using Microsoft.Rest;
- using Microsoft.Rest.Azure;
- using Models;
- using System.Threading;
- using System.Threading.Tasks;
-
- ///
- /// Extension methods for FrontDoorManagementClient.
- ///
- public static partial class FrontDoorManagementClientExtensions
- {
- ///
- /// Check the availability of a Front Door resource name.
- ///
- ///
- /// The operations group for this extension method.
- ///
- ///
- /// Input to check.
- ///
- public static CheckNameAvailabilityOutput CheckFrontDoorNameAvailability(this IFrontDoorManagementClient operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput)
- {
- return operations.CheckFrontDoorNameAvailabilityAsync(checkFrontDoorNameAvailabilityInput).GetAwaiter().GetResult();
- }
-
- ///
- /// Check the availability of a Front Door resource name.
- ///
- ///
- /// The operations group for this extension method.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// The cancellation token.
- ///
- public static async Task CheckFrontDoorNameAvailabilityAsync(this IFrontDoorManagementClient operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, CancellationToken cancellationToken = default(CancellationToken))
- {
- using (var _result = await operations.CheckFrontDoorNameAvailabilityWithHttpMessagesAsync(checkFrontDoorNameAvailabilityInput, null, cancellationToken).ConfigureAwait(false))
- {
- return _result.Body;
- }
- }
-
- ///
- /// Check the availability of a Front Door subdomain.
- ///
- ///
- /// The operations group for this extension method.
- ///
- ///
- /// Input to check.
- ///
- public static CheckNameAvailabilityOutput CheckFrontDoorNameAvailabilityWithSubscription(this IFrontDoorManagementClient operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput)
- {
- return operations.CheckFrontDoorNameAvailabilityWithSubscriptionAsync(checkFrontDoorNameAvailabilityInput).GetAwaiter().GetResult();
- }
-
- ///
- /// Check the availability of a Front Door subdomain.
- ///
- ///
- /// The operations group for this extension method.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// The cancellation token.
- ///
- public static async Task CheckFrontDoorNameAvailabilityWithSubscriptionAsync(this IFrontDoorManagementClient operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, CancellationToken cancellationToken = default(CancellationToken))
- {
- using (var _result = await operations.CheckFrontDoorNameAvailabilityWithSubscriptionWithHttpMessagesAsync(checkFrontDoorNameAvailabilityInput, null, cancellationToken).ConfigureAwait(false))
- {
- return _result.Body;
- }
- }
-
- }
-}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperations.cs
new file mode 100644
index 000000000000..2a257d126651
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperations.cs
@@ -0,0 +1,238 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Net;
+ using System.Net.Http;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// FrontDoorNameAvailabilityOperations operations.
+ ///
+ internal partial class FrontDoorNameAvailabilityOperations : IServiceOperations, IFrontDoorNameAvailabilityOperations
+ {
+ ///
+ /// Initializes a new instance of the FrontDoorNameAvailabilityOperations class.
+ ///
+ ///
+ /// Reference to the service client.
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ internal FrontDoorNameAvailabilityOperations(FrontDoorManagementClient client)
+ {
+ if (client == null)
+ {
+ throw new System.ArgumentNullException("client");
+ }
+ Client = client;
+ }
+
+ ///
+ /// Gets a reference to the FrontDoorManagementClient
+ ///
+ public FrontDoorManagementClient Client { get; private set; }
+
+ ///
+ /// Check the availability of a Front Door resource name.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> CheckWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (checkFrontDoorNameAvailabilityInput == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "checkFrontDoorNameAvailabilityInput");
+ }
+ if (checkFrontDoorNameAvailabilityInput != null)
+ {
+ checkFrontDoorNameAvailabilityInput.Validate();
+ }
+ string apiVersion = "2020-05-01";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("checkFrontDoorNameAvailabilityInput", checkFrontDoorNameAvailabilityInput);
+ tracingParameters.Add("apiVersion", apiVersion);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "Check", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Network/checkFrontDoorNameAvailability").ToString();
+ List _queryParameters = new List();
+ if (apiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(checkFrontDoorNameAvailabilityInput != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(checkFrontDoorNameAvailabilityInput, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperationsExtensions.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperationsExtensions.cs
new file mode 100644
index 000000000000..25efaec632b7
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityOperationsExtensions.cs
@@ -0,0 +1,59 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Extension methods for FrontDoorNameAvailabilityOperations.
+ ///
+ public static partial class FrontDoorNameAvailabilityOperationsExtensions
+ {
+ ///
+ /// Check the availability of a Front Door resource name.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// Input to check.
+ ///
+ public static CheckNameAvailabilityOutput Check(this IFrontDoorNameAvailabilityOperations operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput)
+ {
+ return operations.CheckAsync(checkFrontDoorNameAvailabilityInput).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Check the availability of a Front Door resource name.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task CheckAsync(this IFrontDoorNameAvailabilityOperations operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.CheckWithHttpMessagesAsync(checkFrontDoorNameAvailabilityInput, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperations.cs
new file mode 100644
index 000000000000..972d1fc80307
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperations.cs
@@ -0,0 +1,243 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Net;
+ using System.Net.Http;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// FrontDoorNameAvailabilityWithSubscriptionOperations operations.
+ ///
+ internal partial class FrontDoorNameAvailabilityWithSubscriptionOperations : IServiceOperations, IFrontDoorNameAvailabilityWithSubscriptionOperations
+ {
+ ///
+ /// Initializes a new instance of the FrontDoorNameAvailabilityWithSubscriptionOperations class.
+ ///
+ ///
+ /// Reference to the service client.
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ internal FrontDoorNameAvailabilityWithSubscriptionOperations(FrontDoorManagementClient client)
+ {
+ if (client == null)
+ {
+ throw new System.ArgumentNullException("client");
+ }
+ Client = client;
+ }
+
+ ///
+ /// Gets a reference to the FrontDoorManagementClient
+ ///
+ public FrontDoorManagementClient Client { get; private set; }
+
+ ///
+ /// Check the availability of a Front Door subdomain.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> CheckWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (checkFrontDoorNameAvailabilityInput == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "checkFrontDoorNameAvailabilityInput");
+ }
+ if (checkFrontDoorNameAvailabilityInput != null)
+ {
+ checkFrontDoorNameAvailabilityInput.Validate();
+ }
+ if (Client.SubscriptionId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
+ }
+ string apiVersion = "2020-05-01";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("checkFrontDoorNameAvailabilityInput", checkFrontDoorNameAvailabilityInput);
+ tracingParameters.Add("apiVersion", apiVersion);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "Check", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Network/checkFrontDoorNameAvailability").ToString();
+ _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
+ List _queryParameters = new List();
+ if (apiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(checkFrontDoorNameAvailabilityInput != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(checkFrontDoorNameAvailabilityInput, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperationsExtensions.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperationsExtensions.cs
new file mode 100644
index 000000000000..7e32b5025fa6
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorNameAvailabilityWithSubscriptionOperationsExtensions.cs
@@ -0,0 +1,59 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Extension methods for FrontDoorNameAvailabilityWithSubscriptionOperations.
+ ///
+ public static partial class FrontDoorNameAvailabilityWithSubscriptionOperationsExtensions
+ {
+ ///
+ /// Check the availability of a Front Door subdomain.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// Input to check.
+ ///
+ public static CheckNameAvailabilityOutput Check(this IFrontDoorNameAvailabilityWithSubscriptionOperations operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput)
+ {
+ return operations.CheckAsync(checkFrontDoorNameAvailabilityInput).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Check the availability of a Front Door subdomain.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task CheckAsync(this IFrontDoorNameAvailabilityWithSubscriptionOperations operations, CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.CheckWithHttpMessagesAsync(checkFrontDoorNameAvailabilityInput, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorsOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorsOperations.cs
index f89105f0aab3..b594b9589780 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorsOperations.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontDoorsOperations.cs
@@ -80,7 +80,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -273,7 +273,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[a-zA-Z0-9_\\-\\(\\)\\.]*[^\\.]$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -491,7 +491,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontDoorName", "^[a-zA-Z0-9]+([-a-zA-Z0-9]?[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -770,7 +770,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
{
customDomainProperties.Validate();
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1008,7 +1008,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
{
frontDoorParameters.Validate();
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1267,7 +1267,7 @@ internal FrontDoorsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontDoorName", "^[a-zA-Z0-9]+([-a-zA-Z0-9]?[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontendEndpointsOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontendEndpointsOperations.cs
index a9394677e5e5..c48db14c46bc 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontendEndpointsOperations.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/FrontendEndpointsOperations.cs
@@ -124,7 +124,7 @@ internal FrontendEndpointsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontDoorName", "^[a-zA-Z0-9]+([-a-zA-Z0-9]?[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -366,7 +366,7 @@ internal FrontendEndpointsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontendEndpointName", "^[a-zA-Z0-9]+(-*[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -670,7 +670,7 @@ internal FrontendEndpointsOperations(FrontDoorManagementClient client)
{
customHttpsConfiguration.Validate();
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -899,7 +899,7 @@ internal FrontendEndpointsOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontendEndpointName", "^[a-zA-Z0-9]+(-*[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorManagementClient.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorManagementClient.cs
index d70706e3fe1c..d4327514f3b6 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorManagementClient.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorManagementClient.cs
@@ -14,10 +14,6 @@ namespace Microsoft.Azure.Management.FrontDoor
using Microsoft.Rest.Azure;
using Models;
using Newtonsoft.Json;
- using System.Collections;
- using System.Collections.Generic;
- using System.Threading;
- using System.Threading.Tasks;
///
/// FrontDoor Client
@@ -90,6 +86,16 @@ public partial interface IFrontDoorManagementClient : System.IDisposable
///
IReportsOperations Reports { get; }
+ ///
+ /// Gets the IFrontDoorNameAvailabilityOperations.
+ ///
+ IFrontDoorNameAvailabilityOperations FrontDoorNameAvailability { get; }
+
+ ///
+ /// Gets the IFrontDoorNameAvailabilityWithSubscriptionOperations.
+ ///
+ IFrontDoorNameAvailabilityWithSubscriptionOperations FrontDoorNameAvailabilityWithSubscription { get; }
+
///
/// Gets the IFrontDoorsOperations.
///
@@ -120,33 +126,5 @@ public partial interface IFrontDoorManagementClient : System.IDisposable
///
IManagedRuleSetsOperations ManagedRuleSets { get; }
- ///
- /// Check the availability of a Front Door resource name.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// The headers that will be added to request.
- ///
- ///
- /// The cancellation token.
- ///
- Task> CheckFrontDoorNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
-
- ///
- /// Check the availability of a Front Door subdomain.
- ///
- ///
- /// Input to check.
- ///
- ///
- /// The headers that will be added to request.
- ///
- ///
- /// The cancellation token.
- ///
- Task> CheckFrontDoorNameAvailabilityWithSubscriptionWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
-
}
}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityOperations.cs
new file mode 100644
index 000000000000..06ff23a2ac88
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityOperations.cs
@@ -0,0 +1,49 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// FrontDoorNameAvailabilityOperations operations.
+ ///
+ public partial interface IFrontDoorNameAvailabilityOperations
+ {
+ ///
+ /// Check the availability of a Front Door resource name.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> CheckWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityWithSubscriptionOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityWithSubscriptionOperations.cs
new file mode 100644
index 000000000000..cb0af605bcd6
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/IFrontDoorNameAvailabilityWithSubscriptionOperations.cs
@@ -0,0 +1,49 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.FrontDoor
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// FrontDoorNameAvailabilityWithSubscriptionOperations operations.
+ ///
+ public partial interface IFrontDoorNameAvailabilityWithSubscriptionOperations
+ {
+ ///
+ /// Check the availability of a Front Door subdomain.
+ ///
+ ///
+ /// Input to check.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> CheckWithHttpMessagesAsync(CheckNameAvailabilityInput checkFrontDoorNameAvailabilityInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ }
+}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/Backend.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/Backend.cs
index c76462908cc6..2375acd70b9d 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/Backend.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/Backend.cs
@@ -35,6 +35,12 @@ public Backend()
/// The Alias of the Private Link
/// resource. Populating this optional field indicates that this
/// backend is 'Private'
+ /// The Resource Id of the Private
+ /// Link resource. Populating this optional field indicates that this
+ /// backend is 'Private'
+ /// The location of the Private Link
+ /// resource. Required only if 'privateLinkResourceId' is
+ /// populated
/// The Approval status for the
/// connection to the Private Link. Possible values include: 'Pending',
/// 'Approved', 'Rejected', 'Disconnected', 'Timeout'
@@ -56,10 +62,12 @@ public Backend()
/// The value to use as the host header
/// sent to the backend. If blank or unspecified, this defaults to the
/// incoming host.
- public Backend(string address = default(string), string privateLinkAlias = default(string), PrivateEndpointStatus? privateEndpointStatus = default(PrivateEndpointStatus?), string privateLinkApprovalMessage = default(string), int? httpPort = default(int?), int? httpsPort = default(int?), string enabledState = default(string), int? priority = default(int?), int? weight = default(int?), string backendHostHeader = default(string))
+ public Backend(string address = default(string), string privateLinkAlias = default(string), string privateLinkResourceId = default(string), string privateLinkLocation = default(string), PrivateEndpointStatus? privateEndpointStatus = default(PrivateEndpointStatus?), string privateLinkApprovalMessage = default(string), int? httpPort = default(int?), int? httpsPort = default(int?), string enabledState = default(string), int? priority = default(int?), int? weight = default(int?), string backendHostHeader = default(string))
{
Address = address;
PrivateLinkAlias = privateLinkAlias;
+ PrivateLinkResourceId = privateLinkResourceId;
+ PrivateLinkLocation = privateLinkLocation;
PrivateEndpointStatus = privateEndpointStatus;
PrivateLinkApprovalMessage = privateLinkApprovalMessage;
HttpPort = httpPort;
@@ -89,6 +97,21 @@ public Backend()
[JsonProperty(PropertyName = "privateLinkAlias")]
public string PrivateLinkAlias { get; set; }
+ ///
+ /// Gets or sets the Resource Id of the Private Link resource.
+ /// Populating this optional field indicates that this backend is
+ /// 'Private'
+ ///
+ [JsonProperty(PropertyName = "privateLinkResourceId")]
+ public string PrivateLinkResourceId { get; set; }
+
+ ///
+ /// Gets or sets the location of the Private Link resource. Required
+ /// only if 'privateLinkResourceId' is populated
+ ///
+ [JsonProperty(PropertyName = "privateLinkLocation")]
+ public string PrivateLinkLocation { get; set; }
+
///
/// Gets the Approval status for the connection to the Private Link.
/// Possible values include: 'Pending', 'Approved', 'Rejected',
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/RouteConfiguration.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/RouteConfiguration.cs
index 6790a4cfceae..75c3f91c243a 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/RouteConfiguration.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/Models/RouteConfiguration.cs
@@ -10,11 +10,13 @@
namespace Microsoft.Azure.Management.FrontDoor.Models
{
+ using Newtonsoft.Json;
using System.Linq;
///
/// Base class for all types of Route.
///
+ [Newtonsoft.Json.JsonObject("RouteConfiguration")]
public partial class RouteConfiguration
{
///
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/RulesEnginesOperations.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/RulesEnginesOperations.cs
index b590e2d4f6dc..a4254bdaaca4 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/RulesEnginesOperations.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/RulesEnginesOperations.cs
@@ -124,7 +124,7 @@ internal RulesEnginesOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "frontDoorName", "^[a-zA-Z0-9]+([-a-zA-Z0-9]?[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -366,7 +366,7 @@ internal RulesEnginesOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "rulesEngineName", "^[a-zA-Z0-9]+(-*[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -674,7 +674,7 @@ internal RulesEnginesOperations(FrontDoorManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "rulesEngineParameters");
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -958,7 +958,7 @@ internal RulesEnginesOperations(FrontDoorManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "rulesEngineName", "^[a-zA-Z0-9]+(-*[a-zA-Z0-9])*$");
}
}
- string apiVersion = "2020-01-01";
+ string apiVersion = "2020-05-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/SdkInfo_FrontDoorManagementClient.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/SdkInfo_FrontDoorManagementClient.cs
index d1e3a2682e2f..c6019fc8cd90 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/SdkInfo_FrontDoorManagementClient.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Generated/SdkInfo_FrontDoorManagementClient.cs
@@ -19,18 +19,18 @@ public static IEnumerable> ApiInfo_FrontDoorManage
{
return new Tuple[]
{
- new Tuple("Network", "CheckFrontDoorNameAvailability", "2020-01-01"),
- new Tuple("Network", "CheckFrontDoorNameAvailabilityWithSubscription", "2020-01-01"),
- new Tuple("Network", "Endpoints", "2020-01-01"),
+ new Tuple("Network", "Endpoints", "2020-05-01"),
new Tuple("Network", "Experiments", "2019-11-01"),
- new Tuple("Network", "FrontDoors", "2020-01-01"),
- new Tuple("Network", "FrontendEndpoints", "2020-01-01"),
+ new Tuple("Network", "FrontDoorNameAvailability", "2020-05-01"),
+ new Tuple("Network", "FrontDoorNameAvailabilityWithSubscription", "2020-05-01"),
+ new Tuple("Network", "FrontDoors", "2020-05-01"),
+ new Tuple("Network", "FrontendEndpoints", "2020-05-01"),
new Tuple("Network", "ManagedRuleSets", "2019-10-01"),
new Tuple("Network", "NetworkExperimentProfiles", "2019-11-01"),
new Tuple("Network", "Policies", "2019-10-01"),
new Tuple("Network", "PreconfiguredEndpoints", "2019-11-01"),
new Tuple("Network", "Reports", "2019-11-01"),
- new Tuple("Network", "RulesEngines", "2020-01-01"),
+ new Tuple("Network", "RulesEngines", "2020-05-01"),
}.AsEnumerable();
}
}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Microsoft.Azure.Management.FrontDoor.csproj b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Microsoft.Azure.Management.FrontDoor.csproj
index 4eae6820a0a1..26b85acfdda1 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Microsoft.Azure.Management.FrontDoor.csproj
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Microsoft.Azure.Management.FrontDoor.csproj
@@ -7,12 +7,12 @@
Microsoft.Azure.Management.FrontDoor
Provides management capabilities for Front Door services.
Microsoft.Azure.Management.FrontDoor
- 2.0.0
+ 2.1.0
Microsoft Azure Front Door management;FrontDoor;Front Door management;
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Properties/AssemblyInfo.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Properties/AssemblyInfo.cs
index 56417f0826c6..36b39aa2657a 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Properties/AssemblyInfo.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/Properties/AssemblyInfo.cs
@@ -10,8 +10,8 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Azure .NET SDK")]
-[assembly: AssemblyVersion("2.0.0.0")]
-[assembly: AssemblyFileVersion("2.0.0.0")]
+[assembly: AssemblyVersion("2.0.1.0")]
+[assembly: AssemblyFileVersion("2.0.1.0")]
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/generate.ps1 b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/generate.ps1
index 3331d9815b01..8d199672e735 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/generate.ps1
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/src/generate.ps1
@@ -1 +1 @@
-Start-AutoRestCodeGeneration -ResourceProvider "frontdoor/resource-manager" -AutoRestVersion "latest"
+Start-AutoRestCodeGeneration -ResourceProvider "frontdoor/resource-manager" -AutoRestVersion "v2"
\ No newline at end of file
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/ScenarioTests/FrontDoorTests.cs b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/ScenarioTests/FrontDoorTests.cs
index 2876fc8f7c97..a8936ea052c8 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/ScenarioTests/FrontDoorTests.cs
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/ScenarioTests/FrontDoorTests.cs
@@ -1,16 +1,15 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
+using FrontDoor.Tests.Helpers;
+using Microsoft.Azure.Management.FrontDoor;
+using Microsoft.Azure.Management.FrontDoor.Models;
+using Microsoft.Azure.Management.Resources;
+using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using System.Collections.Generic;
using System.Linq;
using System.Net;
-using Microsoft.Azure.Management.Resources;
-using Microsoft.Azure.Management.FrontDoor;
-using Microsoft.Azure.Management.FrontDoor.Models;
-using FrontDoor.Tests.Helpers;
using Xunit;
-using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
-
using refID = Microsoft.Azure.Management.FrontDoor.Models.SubResource;
namespace FrontDoor.Tests.ScenarioTests
@@ -42,10 +41,10 @@ public void FrontDoorCRUDTest()
ForwardingConfiguration forwardingConfiguration = new ForwardingConfiguration(
forwardingProtocol: "MatchRequest",
backendPool: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/backendPools/backendPool1"));
-
+
RoutingRule routingrule1 = new RoutingRule(
name: "routingrule1",
- frontendEndpoints: new List { new refID("/subscriptions/"+subid+"/resourceGroups/"+resourceGroupName+"/providers/Microsoft.Network/frontDoors/"+frontDoorName+"/frontendEndpoints/frontendEndpoint1")},
+ frontendEndpoints: new List { new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/frontendEndpoints/frontendEndpoint1") },
acceptedProtocols: new List { "Https" },
patternsToMatch: new List { "/*" },
routeConfiguration: forwardingConfiguration,
@@ -56,10 +55,10 @@ public void FrontDoorCRUDTest()
path: "/",
protocol: "Http",
intervalInSeconds: 120,
- //healthProbeMethod: "GET",
+ healthProbeMethod: "Get",
enabledState: "Enabled"
);
-
+
LoadBalancingSettingsModel loadBalancingSettings1 = new LoadBalancingSettingsModel(
name: "loadBalancingSettings1",
additionalLatencyMilliseconds: 0,
@@ -79,8 +78,8 @@ public void FrontDoorCRUDTest()
BackendPool backendPool1 = new BackendPool(
name: "backendPool1",
backends: new List { backend1 },
- loadBalancingSettings: new refID("/subscriptions/"+subid+"/resourceGroups/"+resourceGroupName+"/providers/Microsoft.Network/frontDoors/"+frontDoorName+ "/loadBalancingSettings/loadBalancingSettings1"),
- healthProbeSettings: new refID("/subscriptions/"+subid+"/resourceGroups/"+resourceGroupName+"/providers/Microsoft.Network/frontDoors/"+frontDoorName+"/healthProbeSettings/healthProbeSettings1")
+ loadBalancingSettings: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/loadBalancingSettings/loadBalancingSettings1"),
+ healthProbeSettings: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/healthProbeSettings/healthProbeSettings1")
);
BackendPoolsSettings backendPoolsSettings1 = new BackendPoolsSettings(
@@ -89,7 +88,7 @@ public void FrontDoorCRUDTest()
FrontendEndpoint frontendEndpoint1 = new FrontendEndpoint(
name: "frontendEndpoint1",
- hostName: frontDoorName+".azurefd.net",
+ hostName: frontDoorName + ".azurefd.net",
sessionAffinityEnabledState: "Disabled",
sessionAffinityTtlSeconds: 0
);
@@ -112,7 +111,7 @@ public void FrontDoorCRUDTest()
};
var createdFrontDoor = frontDoorMgmtClient.FrontDoors.CreateOrUpdate(resourceGroupName, frontDoorName, createParameters);
-
+
// validate that correct frontdoor is created
VerifyFrontDoor(createdFrontDoor, createParameters);
@@ -145,7 +144,188 @@ public void FrontDoorCRUDTest()
});
FrontDoorTestUtilities.DeleteResourceGroup(resourcesClient, resourceGroupName);
+ }
+ }
+ [Fact]
+
+ public void FrontDoorCRUDTestWithRulesEngine()
+ {
+ var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK };
+ var handler2 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK };
+
+ using (MockContext context = MockContext.Start(this.GetType()))
+ {
+ // Create clients
+ var frontDoorMgmtClient = FrontDoorTestUtilities.GetFrontDoorManagementClient(context, handler1);
+ var resourcesClient = FrontDoorTestUtilities.GetResourceManagementClient(context, handler2);
+
+ // Get subscription id
+ string subid = frontDoorMgmtClient.SubscriptionId;
+
+ // Create resource group
+ var resourceGroupName = FrontDoorTestUtilities.CreateResourceGroup(resourcesClient);
+
+ // Create two different frontDoor
+ string frontDoorName = TestUtilities.GenerateName("frontDoor");
+
+ ForwardingConfiguration forwardingConfiguration = new ForwardingConfiguration(
+ forwardingProtocol: "MatchRequest",
+ backendPool: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/backendPools/backendPool1"));
+
+ RoutingRule routingrule1 = new RoutingRule(
+ name: "routingrule1",
+ frontendEndpoints: new List { new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/frontendEndpoints/frontendEndpoint1") },
+ acceptedProtocols: new List { "Https" },
+ patternsToMatch: new List { "/*" },
+ routeConfiguration: forwardingConfiguration,
+ enabledState: "Enabled"
+ );
+ HealthProbeSettingsModel healthProbeSettings1 = new HealthProbeSettingsModel(
+ name: "healthProbeSettings1",
+ path: "/",
+ protocol: "Http",
+ intervalInSeconds: 120,
+ healthProbeMethod: "Get",
+ enabledState: "Enabled"
+ );
+
+ LoadBalancingSettingsModel loadBalancingSettings1 = new LoadBalancingSettingsModel(
+ name: "loadBalancingSettings1",
+ additionalLatencyMilliseconds: 0,
+ sampleSize: 4,
+ successfulSamplesRequired: 2
+ );
+
+ Backend backend1 = new Backend(
+ address: "contoso1.azurewebsites.net",
+ httpPort: 80,
+ httpsPort: 443,
+ enabledState: "Enabled",
+ weight: 1,
+ priority: 2
+ );
+
+ BackendPool backendPool1 = new BackendPool(
+ name: "backendPool1",
+ backends: new List { backend1 },
+ loadBalancingSettings: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/loadBalancingSettings/loadBalancingSettings1"),
+ healthProbeSettings: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/healthProbeSettings/healthProbeSettings1")
+ );
+
+ BackendPoolsSettings backendPoolsSettings1 = new BackendPoolsSettings(
+ sendRecvTimeoutSeconds: 123
+ );
+
+ FrontendEndpoint frontendEndpoint1 = new FrontendEndpoint(
+ name: "frontendEndpoint1",
+ hostName: frontDoorName + ".azurefd.net",
+ sessionAffinityEnabledState: "Disabled",
+ sessionAffinityTtlSeconds: 0
+ );
+
+ FrontDoorModel createParameters = new FrontDoorModel
+ {
+ Location = "global",
+ FriendlyName = frontDoorName,
+ Tags = new Dictionary
+ {
+ {"key1","value1"},
+ {"key2","value2"}
+ },
+ RoutingRules = new List { routingrule1 },
+ LoadBalancingSettings = new List { loadBalancingSettings1 },
+ HealthProbeSettings = new List { healthProbeSettings1 },
+ FrontendEndpoints = new List { frontendEndpoint1 },
+ BackendPools = new List { backendPool1 },
+ BackendPoolsSettings = backendPoolsSettings1
+ };
+
+ var createdFrontDoor = frontDoorMgmtClient.FrontDoors.CreateOrUpdate(resourceGroupName, frontDoorName, createParameters);
+
+ // validate that correct frontdoor is created
+ VerifyFrontDoor(createdFrontDoor, createParameters);
+
+ // Create rules engine for front door
+ RulesEngineAction rulesEngineAction1 = new RulesEngineAction(
+ requestHeaderActions: new List { },
+ responseHeaderActions: new List { },
+ routeConfigurationOverride: new ForwardingConfiguration(
+ customForwardingPath: null,
+ forwardingProtocol: "HttpsOnly",
+ cacheConfiguration: new CacheConfiguration(queryParameterStripDirective: "StripNone", dynamicCompression: "Disabled"),
+ backendPool: new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/backendPools/backendPool1")
+ )
+ );
+
+ RulesEngineMatchCondition rulesEngineMatchCondition1 = new RulesEngineMatchCondition(
+ rulesEngineMatchVariable: "RequestHeader",
+ selector: "Rules-engine-action",
+ rulesEngineOperator: "Equal",
+ rulesEngineMatchValue: new List { "Route-override-forwarding" },
+ negateCondition: false,
+ transforms: new List { }
+ );
+
+ RulesEngineRule rule1 = new RulesEngineRule(
+ priority: 1,
+ name: "Rules1",
+ matchProcessingBehavior: "Stop",
+ action: rulesEngineAction1,
+ matchConditions: new List { rulesEngineMatchCondition1 }
+ );
+
+ RulesEngine rulesEngine1 = new RulesEngine(
+ rules: new List { rule1 },
+ name: "RulesEngine1"
+ );
+
+ var rulesEngineParameters = new List { rulesEngine1 };
+
+ var createdRulesEngine = frontDoorMgmtClient.RulesEngines.CreateOrUpdate(resourceGroupName, frontDoorName, rulesEngine1.Name, rulesEngineParameters[0]);
+
+ // Validate correct rules engine created
+ VerifyRulesEngine(createdRulesEngine, rulesEngineParameters[0]);
+
+ // Retrieve rules engines for front door
+ var retrievedRulesEngines = frontDoorMgmtClient.RulesEngines.ListByFrontDoor(resourceGroupName, frontDoorName).ToList();
+
+ // Validate correct rules engines retrieved from front door
+ VerifyRulesEngines(retrievedRulesEngines, rulesEngineParameters);
+
+ // Retrieve frontdoor and validate rules engine present
+ var retrievedFrontDoor = frontDoorMgmtClient.FrontDoors.Get(resourceGroupName, frontDoorName);
+
+ VerifyFrontDoor(retrievedFrontDoor, createParameters);
+ VerifyRulesEngines(retrievedFrontDoor.RulesEngines, rulesEngineParameters);
+
+ // Link rules engine to routing rule
+ // why did sdk not autogenerate into subresource?
+ retrievedFrontDoor.RoutingRules[0].RulesEngine = new refID("/subscriptions/" + subid + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/frontDoors/" + frontDoorName + "/rulesEngines/" + rulesEngine1.Name);
+
+ var updatedFrontDoor = frontDoorMgmtClient.FrontDoors.CreateOrUpdate(resourceGroupName, frontDoorName, retrievedFrontDoor);
+
+ // Validate rules engine has been linked.
+ VerifyFrontDoor(updatedFrontDoor, retrievedFrontDoor);
+
+ // Unlink rules engine and delete rules engine.
+ frontDoorMgmtClient.FrontDoors.CreateOrUpdate(resourceGroupName, frontDoorName, createParameters);
+ frontDoorMgmtClient.RulesEngines.Delete(resourceGroupName, frontDoorName, rulesEngine1.Name);
+
+ // Verify rules engine deleted
+ retrievedRulesEngines = frontDoorMgmtClient.RulesEngines.ListByFrontDoor(resourceGroupName, frontDoorName).ToList();
+ Assert.Empty(retrievedRulesEngines);
+
+ // Delete frontDoor
+ frontDoorMgmtClient.FrontDoors.Delete(resourceGroupName, frontDoorName);
+
+ // Verify that frontDoor is deleted
+ Assert.ThrowsAny(() =>
+ {
+ frontDoorMgmtClient.FrontDoors.Get(resourceGroupName, frontDoorName);
+ });
+
+ FrontDoorTestUtilities.DeleteResourceGroup(resourcesClient, resourceGroupName);
}
}
@@ -171,10 +351,10 @@ public void WAFCRUDTest()
{
Location = "global",
Tags = new Dictionary
- {
- {"key1","value1"},
- {"key2","value2"}
- },
+ {
+ {"key1","value1"},
+ {"key2","value2"}
+ },
PolicySettings = new PolicySettings
{
EnabledState = "Enabled",
@@ -186,80 +366,80 @@ public void WAFCRUDTest()
CustomRules = new CustomRuleList(
new List
{
- new CustomRule
+ new CustomRule
+ {
+ Name = "rule1",
+ EnabledState = "Enabled",
+ Priority = 1,
+ RuleType = "RateLimitRule",
+ RateLimitThreshold = 1000,
+ MatchConditions = new List
{
- Name = "rule1",
- EnabledState = "Enabled",
- Priority = 1,
- RuleType = "RateLimitRule",
- RateLimitThreshold = 1000,
- MatchConditions = new List
+ new MatchCondition
{
- new MatchCondition
+ MatchVariable = "RemoteAddr",
+ OperatorProperty = "IPMatch",
+ MatchValue = new List
{
- MatchVariable = "RemoteAddr",
- OperatorProperty = "IPMatch",
- MatchValue = new List
- {
- "192.168.1.0/24",
- "10.0.0.0/24"
- }
+ "192.168.1.0/24",
+ "10.0.0.0/24"
}
- },
- Action = "Block"
- }
+ }
+ },
+ Action = "Block"
+ }
}
),
ManagedRules = new ManagedRuleSetList(
new List {
- new ManagedRuleSet
+ new ManagedRuleSet
+ {
+ RuleSetType = "DefaultRuleSet",
+ RuleSetVersion = "1.0",
+ Exclusions = new List
{
- RuleSetType = "DefaultRuleSet",
- RuleSetVersion = "1.0",
- Exclusions = new List
+ new ManagedRuleExclusion
{
- new ManagedRuleExclusion
- {
- MatchVariable = ManagedRuleExclusionMatchVariable.RequestBodyPostArgNames,
- SelectorMatchOperator = ManagedRuleExclusionSelectorMatchOperator.Contains,
- Selector = "query"
- }
- },
- RuleGroupOverrides = new List
+ MatchVariable = ManagedRuleExclusionMatchVariable.RequestBodyPostArgNames,
+ SelectorMatchOperator = ManagedRuleExclusionSelectorMatchOperator.Contains,
+ Selector = "query"
+ }
+ },
+ RuleGroupOverrides = new List
+ {
+ new ManagedRuleGroupOverride
{
- new ManagedRuleGroupOverride
+ RuleGroupName = "SQLI",
+ Exclusions = new List
{
- RuleGroupName = "SQLI",
- Exclusions = new List
+ new ManagedRuleExclusion
+ {
+ MatchVariable = ManagedRuleExclusionMatchVariable.RequestHeaderNames,
+ SelectorMatchOperator = ManagedRuleExclusionSelectorMatchOperator.Equals,
+ Selector = "User-Agent"
+ }
+ },
+ Rules = new List
+ {
+ new ManagedRuleOverride
{
+ RuleId = "942100",
+ Action = "Redirect",
+ EnabledState = "Disabled",
+ Exclusions = new List
+ {
new ManagedRuleExclusion
{
- MatchVariable = ManagedRuleExclusionMatchVariable.RequestHeaderNames,
+ MatchVariable = ManagedRuleExclusionMatchVariable.QueryStringArgNames,
SelectorMatchOperator = ManagedRuleExclusionSelectorMatchOperator.Equals,
- Selector = "User-Agent"
- }
- },
- Rules = new List
- {
- new ManagedRuleOverride
- {
- RuleId = "942100",
- Action = "Redirect",
- EnabledState = "Disabled",
- Exclusions = new List
- {
- new ManagedRuleExclusion
- {
- MatchVariable = ManagedRuleExclusionMatchVariable.QueryStringArgNames,
- SelectorMatchOperator = ManagedRuleExclusionSelectorMatchOperator.Equals,
- Selector = "search"
- }
+ Selector = "search"
}
}
}
}
}
}
+ }
})
@@ -283,17 +463,17 @@ public void WAFCRUDTest()
Priority = 2,
RuleType = "MatchRule",
MatchConditions = new List
+ {
+ new MatchCondition
{
- new MatchCondition
+ MatchVariable = "RemoteAddr",
+ OperatorProperty = "GeoMatch",
+ MatchValue = new List
{
- MatchVariable = "RemoteAddr",
- OperatorProperty = "GeoMatch",
- MatchValue = new List
- {
- "US"
- }
+ "US"
}
- },
+ }
+ },
Action = "Allow"
};
retrievedPolicy.CustomRules.Rules.Add(geoFilter);
@@ -368,6 +548,7 @@ private static void VerifyBackendPool(IList backendPools, IList backends, IList parameters)
{
Assert.Equal(backends.Count, parameters.Count);
@@ -396,7 +577,7 @@ private static void VerifyHealthProbeSettings(IList he
Assert.Equal(healthProbeSettings[i].Path, parameters[i].Path);
Assert.Equal(healthProbeSettings[i].Protocol, parameters[i].Protocol);
Assert.Equal(healthProbeSettings[i].IntervalInSeconds, parameters[i].IntervalInSeconds);
- //Assert.Equal(healthProbeSettings[i].HealthProbeMethod, parameters[i].HealthProbeMethod);
+ Assert.Equal(healthProbeSettings[i].HealthProbeMethod, parameters[i].HealthProbeMethod);
Assert.Equal(healthProbeSettings[i].EnabledState, parameters[i].EnabledState);
}
}
@@ -422,5 +603,72 @@ private static void VerifyFrontendEndpoint(IList frontendEndpo
Assert.Equal(frontendEndpoint[i].SessionAffinityTtlSeconds, parameters[i].SessionAffinityTtlSeconds);
}
}
+
+ private static void VerifyRulesEngines(IList rulesEngines, IList parameters)
+ {
+ Assert.Equal(rulesEngines.Count, parameters.Count);
+ for (int i = 0; i < parameters.Count; i++)
+ {
+ Assert.Equal(rulesEngines[i].Name, parameters[i].Name);
+ VerifyRulesEngine(rulesEngines[i], parameters[i]);
+ }
+ }
+
+ private static void VerifyRulesEngine(RulesEngine rulesEngine, RulesEngine parameters)
+ {
+ Assert.Equal(parameters.Rules.Count, rulesEngine.Rules.Count);
+ for (int i = 0; i < parameters.Rules.Count; i++)
+ {
+ Assert.Equal(parameters.Rules[i].Name, rulesEngine.Rules[i].Name);
+ Assert.Equal(parameters.Rules[i].Priority, rulesEngine.Rules[i].Priority);
+ Assert.Equal(parameters.Rules[i].MatchProcessingBehavior, rulesEngine.Rules[i].MatchProcessingBehavior);
+ VerifyRulesEngineMatchCondition(parameters.Rules[i].MatchConditions, rulesEngine.Rules[i].MatchConditions);
+ VerifyRulesEngineActions(parameters.Rules[i].Action, rulesEngine.Rules[i].Action);
+
+ }
+ }
+
+ private static void VerifyRulesEngineMatchCondition(IList matchConditions, IList parameters)
+ {
+ Assert.Equal(parameters.Count, matchConditions.Count);
+ for (int i = 0; i < parameters.Count; i++)
+ {
+ Assert.Equal(parameters[i].NegateCondition, matchConditions[i].NegateCondition);
+ Assert.Equal(parameters[i].Selector, matchConditions[i].Selector);
+ Assert.Equal(parameters[i].RulesEngineOperator, matchConditions[i].RulesEngineOperator);
+ Assert.Equal(parameters[i].RulesEngineMatchVariable, matchConditions[i].RulesEngineMatchVariable);
+ Assert.Equal(parameters[i].RulesEngineMatchValue, matchConditions[i].RulesEngineMatchValue);
+ Assert.Equal(parameters[i].Transforms, matchConditions[i].Transforms);
+ }
+ }
+
+ private static void VerifyRulesEngineActions(RulesEngineAction action, RulesEngineAction parameters)
+ {
+ VerifyHeaderActions(parameters.RequestHeaderActions, action.RequestHeaderActions);
+ VerifyHeaderActions(parameters.ResponseHeaderActions, action.ResponseHeaderActions);
+ VerifyForwardingRouteConfigurationOverride((ForwardingConfiguration)parameters.RouteConfigurationOverride, (ForwardingConfiguration)action.RouteConfigurationOverride);
+ }
+
+ private static void VerifyHeaderActions(IList actions, IList parameters)
+ {
+ Assert.Equal(parameters.Count, actions.Count);
+ for (int i = 0; i < parameters.Count; i++)
+ {
+ Assert.Equal(parameters[i].HeaderActionType, actions[i].HeaderActionType);
+ Assert.Equal(parameters[i].HeaderName, actions[i].HeaderName);
+ Assert.Equal(parameters[i].Value, actions[i].Value);
+ }
+ }
+
+ private static void VerifyForwardingRouteConfigurationOverride(ForwardingConfiguration config, ForwardingConfiguration parameters)
+ {
+ Assert.Equal(parameters.ForwardingProtocol, config.ForwardingProtocol);
+ Assert.Equal(parameters.CustomForwardingPath, config.CustomForwardingPath);
+ Assert.Equal(parameters.BackendPool.Id, config.BackendPool.Id);
+ Assert.Equal(parameters.CacheConfiguration.DynamicCompression, config.CacheConfiguration.DynamicCompression);
+ Assert.Equal(parameters.CacheConfiguration.QueryParameterStripDirective, config.CacheConfiguration.QueryParameterStripDirective);
+ Assert.Equal(parameters.CacheConfiguration.QueryParameters, config.CacheConfiguration.QueryParameters);
+ Assert.Equal(parameters.CacheConfiguration.CacheDuration, config.CacheConfiguration.CacheDuration);
+ }
}
}
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTest.json b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTest.json
index c69a75f4a960..db39334dd994 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTest.json
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c06bab7c-e5c6-4baf-9cbb-335024ee827b"
+ "ab5a5441-5bb7-4e23-86e4-6f92beca06a7"
],
"accept-language": [
"en-US"
@@ -15,7 +15,7 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -30,7 +30,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:23:37 GMT"
+ "Sat, 21 Mar 2020 01:00:12 GMT"
],
"Pragma": [
"no-cache"
@@ -39,13 +39,13 @@
"1199"
],
"x-ms-request-id": [
- "7b053b87-1516-4143-bb4e-fc3fce0730b8"
+ "14b8d388-ad71-4c81-ad42-6073f18bd698"
],
"x-ms-correlation-request-id": [
- "7b053b87-1516-4143-bb4e-fc3fce0730b8"
+ "14b8d388-ad71-4c81-ad42-6073f18bd698"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212337Z:7b053b87-1516-4143-bb4e-fc3fce0730b8"
+ "WESTUS:20200321T010013Z:14b8d388-ad71-4c81-ad42-6073f18bd698"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913\",\r\n \"name\": \"FrontDoorResourceGroup9913\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444\",\r\n \"name\": \"FrontDoorResourceGroup3444\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor3016\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n }\r\n },\r\n \"name\": \"backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"sendRecvTimeoutSeconds\": 123\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor7872\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n }\r\n },\r\n \"name\": \"backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"sendRecvTimeoutSeconds\": 123\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a57f04d2-dd5d-4212-b9c9-e2950b790286"
+ "7545d556-23a3-47cc-aa9f-1bfea934802f"
],
"accept-language": [
"en-US"
@@ -81,14 +81,14 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2962"
+ "3001"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:23:41 GMT"
+ "Sat, 21 Mar 2020 01:00:16 GMT"
],
"Pragma": [
"no-cache"
@@ -108,13 +108,13 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "2ccfbf46-39a1-4ebe-8b2b-3ddbf1c989a2"
+ "e0d68e64-8470-4cd6-8851-3b3d5dcb1cd8"
],
"x-ms-client-request-id": [
- "a57f04d2-dd5d-4212-b9c9-e2950b790286"
+ "7545d556-23a3-47cc-aa9f-1bfea934802f"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/e50f9b45-4653-4492-881c-f842d31f8f04?api-version=2019-05-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/f731f074-d956-4e0f-98a8-75d9421d5f6b?api-version=2020-01-01"
],
"OData-Version": [
"4.0"
@@ -132,16 +132,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "2b507c9b-f212-481f-9ad2-a2c0e5b4669c"
+ "4bc30c61-8293-4260-a30c-f27a82176a21"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212341Z:2b507c9b-f212-481f-9ad2-a2c0e5b4669c"
+ "WESTUS:20200321T010016Z:4bc30c61-8293-4260-a30c-f27a82176a21"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "4525"
+ "4716"
],
"Content-Type": [
"application/json; odata.metadata=minimal"
@@ -150,17 +150,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"frontDoor3016\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdoors/frontDoor3016\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor3016.azurefd.net\",\r\n \"friendlyName\": \"frontDoor3016\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"frontDoor7872\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdoors/frontDoor7872\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor7872.azurefd.net\",\r\n \"frontdoorId\": \"382e72cb-28e1-490c-850d-80003a2c53d4\",\r\n \"friendlyName\": \"frontDoor7872\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor3016\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"loadBalancingSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"backendPool1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"frontendEndpoint1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor7872\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"loadBalancingSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"backendPool1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"frontendEndpoint1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cee743be-dc96-4482-8a89-7f73aae29ee2"
+ "d89d79db-d7fc-4897-a53e-5f74df3a099a"
],
"accept-language": [
"en-US"
@@ -168,8 +168,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -183,13 +183,13 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:03 GMT"
+ "Sat, 21 Mar 2020 01:00:39 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/c5b0cc56-6e67-449b-a7e8-74b93042d09f/frontdoorresults/frontDoor3016?api-version=2019-05-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/52759c1e-761c-422f-ad9f-5acc11140719/frontdoorresults/frontDoor7872?api-version=2020-01-01"
],
"Retry-After": [
"10"
@@ -198,13 +198,13 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "6792a777-6b46-40f1-9acc-bae676d1feb6"
+ "7707ff59-dd6f-4022-8da3-c7664cc6ddd9"
],
"x-ms-client-request-id": [
- "cee743be-dc96-4482-8a89-7f73aae29ee2"
+ "d89d79db-d7fc-4897-a53e-5f74df3a099a"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/c5b0cc56-6e67-449b-a7e8-74b93042d09f?api-version=2019-05-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/52759c1e-761c-422f-ad9f-5acc11140719?api-version=2020-01-01"
],
"OData-Version": [
"4.0"
@@ -222,16 +222,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1f1d0a2b-df6c-4fff-b392-82dbe8c92c0a"
+ "d2cae9c5-df06-4082-9615-47bbece130c3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212404Z:1f1d0a2b-df6c-4fff-b392-82dbe8c92c0a"
+ "WESTUS:20200321T010039Z:d2cae9c5-df06-4082-9615-47bbece130c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "4520"
+ "4711"
],
"Content-Type": [
"application/json; odata.metadata=minimal"
@@ -240,20 +240,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"frontDoor3016\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdoors/frontDoor3016\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor3016.azurefd.net\",\r\n \"friendlyName\": \"frontDoor3016\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"frontDoor7872\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdoors/frontDoor7872\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor7872.azurefd.net\",\r\n \"frontdoorId\": \"382e72cb-28e1-490c-850d-80003a2c53d4\",\r\n \"friendlyName\": \"frontDoor7872\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/e50f9b45-4653-4492-881c-f842d31f8f04?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2U1MGY5YjQ1LTQ2NTMtNDQ5Mi04ODFjLWY4NDJkMzFmOGYwND9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/f731f074-d956-4e0f-98a8-75d9421d5f6b?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2Y3MzFmMDc0LWQ5NTYtNGUwZi05OGE4LTc1ZDk0MjFkNWY2Yj9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -261,7 +261,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:23:52 GMT"
+ "Sat, 21 Mar 2020 01:00:26 GMT"
],
"Pragma": [
"no-cache"
@@ -270,10 +270,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "31a72cdc-f257-47cd-8faa-373fddb5be5e"
+ "ac252591-848a-44c6-9b21-8ee578cc781a"
],
"x-ms-client-request-id": [
- "6d31dd17-44e2-45da-842c-db460849515c"
+ "58a0d0da-5a36-4d6e-a581-93b615d2e8ad"
],
"OData-Version": [
"4.0"
@@ -291,10 +291,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fd7c0f39-31d7-4e97-9981-44a30c220e37"
+ "62fe74a2-fd63-4a3b-9f23-5302b7f93ce2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212352Z:fd7c0f39-31d7-4e97-9981-44a30c220e37"
+ "WESTUS:20200321T010027Z:62fe74a2-fd63-4a3b-9f23-5302b7f93ce2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -313,16 +313,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/e50f9b45-4653-4492-881c-f842d31f8f04?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2U1MGY5YjQ1LTQ2NTMtNDQ5Mi04ODFjLWY4NDJkMzFmOGYwND9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/f731f074-d956-4e0f-98a8-75d9421d5f6b?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2Y3MzFmMDc0LWQ5NTYtNGUwZi05OGE4LTc1ZDk0MjFkNWY2Yj9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -330,7 +330,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:01 GMT"
+ "Sat, 21 Mar 2020 01:00:37 GMT"
],
"Pragma": [
"no-cache"
@@ -339,10 +339,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "4e306e5b-d87a-4a73-8cfb-7c1924f41630"
+ "7c3e541f-a207-4331-b292-bd265e22f276"
],
"x-ms-client-request-id": [
- "f5c19191-4fc9-4aa6-9a6d-c3cff6a7305b"
+ "0d23078a-602c-4d47-b5b7-82549b705a33"
],
"OData-Version": [
"4.0"
@@ -360,10 +360,10 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9b1c37a5-6c98-4fc1-8ba0-2e8e11158cd8"
+ "c2200b0e-2619-434d-a9f7-3da44fe70079"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212402Z:9b1c37a5-6c98-4fc1-8ba0-2e8e11158cd8"
+ "WESTUS:20200321T010037Z:c2200b0e-2619-434d-a9f7-3da44fe70079"
],
"X-Content-Type-Options": [
"nosniff"
@@ -382,16 +382,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -399,7 +399,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:02 GMT"
+ "Sat, 21 Mar 2020 01:00:38 GMT"
],
"Pragma": [
"no-cache"
@@ -408,10 +408,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "6c2413f7-0ec1-4648-88f9-7bb9b979ec06"
+ "5360412b-d995-4756-a996-8e461c588180"
],
"x-ms-client-request-id": [
- "4f6241d7-09bd-4bb2-b63e-95a970151339"
+ "35fb881f-268b-4456-bf6b-c3622bebe2f3"
],
"OData-Version": [
"4.0"
@@ -429,16 +429,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "2e73b160-af47-4fa1-bdd0-73d544a8424a"
+ "2260d0c3-a756-483e-ab65-cca2f7937327"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212402Z:2e73b160-af47-4fa1-bdd0-73d544a8424a"
+ "WESTUS:20200321T010038Z:2260d0c3-a756-483e-ab65-cca2f7937327"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "4520"
+ "4711"
],
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -447,17 +447,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"frontDoor3016\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdoors/frontDoor3016\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor3016.azurefd.net\",\r\n \"friendlyName\": \"frontDoor3016\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"frontDoor7872\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdoors/frontDoor7872\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor7872.azurefd.net\",\r\n \"frontdoorId\": \"382e72cb-28e1-490c-850d-80003a2c53d4\",\r\n \"friendlyName\": \"frontDoor7872\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b0790df-765b-41bf-b1af-835f957d22d4"
+ "3a974af3-5d22-4e1e-b205-b8c5f2f71e51"
],
"accept-language": [
"en-US"
@@ -465,8 +465,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -474,7 +474,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:02 GMT"
+ "Sat, 21 Mar 2020 01:00:38 GMT"
],
"Pragma": [
"no-cache"
@@ -483,10 +483,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "fd1890c2-3c51-410a-bbf2-b31b56c857e3"
+ "4991bc5d-b64a-46f3-b90d-e6f28d768db5"
],
"x-ms-client-request-id": [
- "9b0790df-765b-41bf-b1af-835f957d22d4"
+ "3a974af3-5d22-4e1e-b205-b8c5f2f71e51"
],
"OData-Version": [
"4.0"
@@ -504,16 +504,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "566b86cd-9409-4e26-a07a-14d942289fe3"
+ "9fb50f71-ce91-4ef4-974f-7b0394d9e4b9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212403Z:566b86cd-9409-4e26-a07a-14d942289fe3"
+ "WESTUS:20200321T010038Z:9fb50f71-ce91-4ef4-974f-7b0394d9e4b9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "4520"
+ "4711"
],
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -522,20 +522,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"frontDoor3016\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdoors/frontDoor3016\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor3016.azurefd.net\",\r\n \"friendlyName\": \"frontDoor3016\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"frontDoor7872\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdoors/frontDoor7872\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor7872.azurefd.net\",\r\n \"frontdoorId\": \"382e72cb-28e1-490c-850d-80003a2c53d4\",\r\n \"friendlyName\": \"frontDoor7872\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -543,7 +543,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:24 GMT"
+ "Sat, 21 Mar 2020 01:00:49 GMT"
],
"Pragma": [
"no-cache"
@@ -552,10 +552,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "411af278-2119-4e7b-9c13-e83aede5379a"
+ "e1085649-f378-4ba8-8fde-3c07182bc45e"
],
"x-ms-client-request-id": [
- "b608c359-3b43-4325-8a79-89e63fb183bb"
+ "0cfc949f-0d96-4e18-bc36-82a8f5b90cbe"
],
"OData-Version": [
"4.0"
@@ -570,19 +570,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "2e40d1f0-8f38-497b-94c2-0972f547fc4a"
+ "61a21747-2b68-4bf1-a804-56086d294590"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212425Z:2e40d1f0-8f38-497b-94c2-0972f547fc4a"
+ "WESTUS:20200321T010050Z:61a21747-2b68-4bf1-a804-56086d294590"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "4520"
+ "4711"
],
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -591,17 +591,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"frontDoor3016\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdoors/frontDoor3016\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor3016.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/Frontdoors/frontDoor3016/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016/backendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor3016.azurefd.net\",\r\n \"friendlyName\": \"frontDoor3016\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"frontDoor7872\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdoors/frontDoor7872\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor7872.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/Frontdoors/frontDoor7872/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor7872.azurefd.net\",\r\n \"frontdoorId\": \"382e72cb-28e1-490c-850d-80003a2c53d4\",\r\n \"friendlyName\": \"frontDoor7872\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "033e5cc6-5b60-4448-9bb9-34bb2575b7f7"
+ "2e748778-a3e0-4ff1-adc1-b486c19ee133"
],
"accept-language": [
"en-US"
@@ -609,8 +609,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,7 +618,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:47 GMT"
+ "Sat, 21 Mar 2020 01:01:01 GMT"
],
"Pragma": [
"no-cache"
@@ -627,10 +627,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "b5414286-e158-47e4-9404-9a66d735fcbc"
+ "bbb46f86-8364-41ab-83d8-69565597c691"
],
"x-ms-client-request-id": [
- "033e5cc6-5b60-4448-9bb9-34bb2575b7f7"
+ "2e748778-a3e0-4ff1-adc1-b486c19ee133"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -642,13 +642,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11991"
],
"x-ms-correlation-request-id": [
- "7ce8e661-bacf-40cd-91ea-2ff03f2bd5a2"
+ "6b191ceb-2e8c-427d-8104-6054106946f7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212447Z:7ce8e661-bacf-40cd-91ea-2ff03f2bd5a2"
+ "WESTUS:20200321T010102Z:6b191ceb-2e8c-427d-8104-6054106946f7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -670,16 +670,16 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/c5b0cc56-6e67-449b-a7e8-74b93042d09f?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2M1YjBjYzU2LTZlNjctNDQ5Yi1hN2U4LTc0YjkzMDQyZDA5Zj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/52759c1e-761c-422f-ad9f-5acc11140719?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzUyNzU5YzFlLTc2MWMtNDIyZi1hZDlmLTVhY2MxMTE0MDcxOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,7 +687,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:14 GMT"
+ "Sat, 21 Mar 2020 01:00:49 GMT"
],
"Pragma": [
"no-cache"
@@ -696,10 +696,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "10f8fcce-7822-4469-ac42-aa072d797141"
+ "c55b68e0-f286-40b8-9ad6-ca64ea1a4094"
],
"x-ms-client-request-id": [
- "f2179196-1d79-4ae9-9e56-8d25208bb2fa"
+ "15aa6c3f-765d-4609-9c07-543322f6c42f"
],
"OData-Version": [
"4.0"
@@ -717,79 +717,10 @@
"11995"
],
"x-ms-correlation-request-id": [
- "fb70df02-3d52-451c-965d-e7c6c70e1396"
+ "ed0049f2-00a4-4ab3-84bf-d8460f5fc864"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212414Z:fb70df02-3d52-451c-965d-e7c6c70e1396"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "78"
- ],
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/c5b0cc56-6e67-449b-a7e8-74b93042d09f?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2M1YjBjYzU2LTZlNjctNDQ5Yi1hN2U4LTc0YjkzMDQyZDA5Zj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 Nov 2019 21:24:24 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "x-ms-request-id": [
- "dfa8c8c3-49c5-4852-8392-246b3d6d5357"
- ],
- "x-ms-client-request-id": [
- "faae2786-69ba-40f8-9d08-47f8c4efd124"
- ],
- "OData-Version": [
- "4.0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-correlation-request-id": [
- "e3e93c43-fdb2-467d-90aa-53513ec6b163"
- ],
- "x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212424Z:e3e93c43-fdb2-467d-90aa-53513ec6b163"
+ "WESTUS:20200321T010049Z:ed0049f2-00a4-4ab3-84bf-d8460f5fc864"
],
"X-Content-Type-Options": [
"nosniff"
@@ -808,13 +739,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontDoors/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontDoors/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f96aedb9-bacd-45c5-ae62-07aebbc6f6d3"
+ "8e251bdf-2141-488a-9e55-f610ee88aa9a"
],
"accept-language": [
"en-US"
@@ -822,8 +753,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -831,13 +762,13 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:25 GMT"
+ "Sat, 21 Mar 2020 01:00:50 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/8101348f-606d-49ba-b055-98b46134de1f/frontdoorresults/frontDoor3016?api-version=2019-05-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/16fb89cd-c5dc-438d-a9a6-bb2ec89acf7d/frontdoorresults/frontDoor7872?api-version=2020-01-01"
],
"Retry-After": [
"10"
@@ -846,13 +777,13 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "734cbcd1-3de7-417d-b175-65a7fb3c1375"
+ "52d38483-6e24-4dcd-ba39-aea95a01f234"
],
"x-ms-client-request-id": [
- "f96aedb9-bacd-45c5-ae62-07aebbc6f6d3"
+ "8e251bdf-2141-488a-9e55-f610ee88aa9a"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/8101348f-606d-49ba-b055-98b46134de1f?api-version=2019-05-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/16fb89cd-c5dc-438d-a9a6-bb2ec89acf7d?api-version=2020-01-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -867,10 +798,10 @@
"14999"
],
"x-ms-correlation-request-id": [
- "2ac50845-1164-44c6-923a-a0ba770dc258"
+ "3921a9b7-0ac0-41b0-a99c-ee6f9ece36c5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212426Z:2ac50845-1164-44c6-923a-a0ba770dc258"
+ "WESTUS:20200321T010050Z:3921a9b7-0ac0-41b0-a99c-ee6f9ece36c5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -886,16 +817,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/8101348f-606d-49ba-b055-98b46134de1f?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzgxMDEzNDhmLTYwNmQtNDliYS1iMDU1LTk4YjQ2MTM0ZGUxZj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/16fb89cd-c5dc-438d-a9a6-bb2ec89acf7d?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzE2ZmI4OWNkLWM1ZGMtNDM4ZC1hOWE2LWJiMmVjODlhY2Y3ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -903,7 +834,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:35 GMT"
+ "Sat, 21 Mar 2020 01:01:00 GMT"
],
"Pragma": [
"no-cache"
@@ -912,10 +843,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "0ea01da7-bafb-4734-b6f6-88888be259fe"
+ "6eb6007b-fa79-488c-9f41-89996313580f"
],
"x-ms-client-request-id": [
- "1e91c3f2-ab35-4fc6-8e12-1ea604c4097e"
+ "43e49bb3-fa65-4dfa-8038-95a1af22c560"
],
"OData-Version": [
"4.0"
@@ -930,19 +861,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "ff2e2a25-09c2-4f57-a6fe-c5c2287df954"
+ "d20943b3-9c7a-42c4-97af-1ed37ab3ac5a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212436Z:ff2e2a25-09c2-4f57-a6fe-c5c2287df954"
+ "WESTUS:20200321T010101Z:d20943b3-9c7a-42c4-97af-1ed37ab3ac5a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "78"
+ "77"
],
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -951,20 +882,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/8101348f-606d-49ba-b055-98b46134de1f?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzgxMDEzNDhmLTYwNmQtNDliYS1iMDU1LTk4YjQ2MTM0ZGUxZj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444/providers/Microsoft.Network/frontdooroperationresults/16fb89cd-c5dc-438d-a9a6-bb2ec89acf7d/frontdoorresults/frontDoor7872?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzE2ZmI4OWNkLWM1ZGMtNDM4ZC1hOWE2LWJiMmVjODlhY2Y3ZC9mcm9udGRvb3JyZXN1bHRzL2Zyb250RG9vcjc4NzI/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -972,7 +903,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:46 GMT"
+ "Sat, 21 Mar 2020 01:01:01 GMT"
],
"Pragma": [
"no-cache"
@@ -981,13 +912,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "1d8e0a69-4222-4110-9cf6-285c947c0268"
+ "70f545d7-4b09-4cd2-ad99-1eb7aa9ce20f"
],
"x-ms-client-request-id": [
- "35a6b6cf-d2c1-4fdb-a19e-d086f8a5863d"
- ],
- "OData-Version": [
- "4.0"
+ "2458513a-7edd-4028-bc17-9cff53a77766"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -999,41 +927,41 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "e1231b27-5586-447b-b020-9f169b606bc8"
+ "cd21d803-7f79-429c-8dcc-5211ba5cabcf"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212446Z:e1231b27-5586-447b-b020-9f169b606bc8"
+ "WESTUS:20200321T010101Z:cd21d803-7f79-429c-8dcc-5211ba5cabcf"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "77"
- ],
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913/providers/Microsoft.Network/frontdooroperationresults/8101348f-606d-49ba-b055-98b46134de1f/frontdoorresults/frontDoor3016?api-version=2019-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzgxMDEzNDhmLTYwNmQtNDliYS1iMDU1LTk4YjQ2MTM0ZGUxZi9mcm9udGRvb3JyZXN1bHRzL2Zyb250RG9vcjMwMTY/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup3444?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXAzNDQ0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb38e8b6-27f0-429e-ae22-ea241f21b0f4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -1041,64 +969,55 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:46 GMT"
+ "Sat, 21 Mar 2020 01:01:01 GMT"
],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "x-ms-request-id": [
- "30defd92-fbe6-4433-9894-e5758a4ae252"
- ],
- "x-ms-client-request-id": [
- "396a2035-c3ae-41e9-b314-a64362f26784"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Retry-After": [
+ "15"
],
- "X-Powered-By": [
- "ASP.NET"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "x-ms-request-id": [
+ "d76106f1-af59-4cc6-8fc7-c6c95973e6ba"
],
"x-ms-correlation-request-id": [
- "0f7ffe31-eecd-4121-94c9-cd4f7d8f7521"
+ "d76106f1-af59-4cc6-8fc7-c6c95973e6ba"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212447Z:0f7ffe31-eecd-4121-94c9-cd4f7d8f7521"
+ "WESTUS:20200321T010102Z:d76106f1-af59-4cc6-8fc7-c6c95973e6ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Content-Length": [
+ "0"
+ ],
"Expires": [
"-1"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup9913?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA5OTEzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU16UTBOQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "03e9b3d7-cb4e-41f7-bdae-c4f7d4889b09"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1107,28 +1026,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:24:49 GMT"
+ "Sat, 21 Mar 2020 01:01:16 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-request-id": [
- "e0544563-80f8-4637-b219-875b6c6ee27f"
+ "d7201a25-dfe9-4eb3-b42c-d032a145e992"
],
"x-ms-correlation-request-id": [
- "e0544563-80f8-4637-b219-875b6c6ee27f"
+ "d7201a25-dfe9-4eb3-b42c-d032a145e992"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212449Z:e0544563-80f8-4637-b219-875b6c6ee27f"
+ "WESTUS:20200321T010117Z:d7201a25-dfe9-4eb3-b42c-d032a145e992"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1147,15 +1066,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU9Ua3hNeTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU16UTBOQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1164,28 +1083,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:25:03 GMT"
+ "Sat, 21 Mar 2020 01:01:31 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11998"
],
"x-ms-request-id": [
- "dc3b92da-1507-4472-a3bb-97896e773846"
+ "b57a5eac-58b4-4cd0-90a8-e9f3db3f1109"
],
"x-ms-correlation-request-id": [
- "dc3b92da-1507-4472-a3bb-97896e773846"
+ "b57a5eac-58b4-4cd0-90a8-e9f3db3f1109"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212504Z:dc3b92da-1507-4472-a3bb-97896e773846"
+ "WESTUS:20200321T010132Z:b57a5eac-58b4-4cd0-90a8-e9f3db3f1109"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1204,15 +1123,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU9Ua3hNeTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU16UTBOQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1221,28 +1140,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:25:19 GMT"
+ "Sat, 21 Mar 2020 01:01:46 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11997"
],
"x-ms-request-id": [
- "b9a2056c-fb20-41d5-85a7-c52ba77c472b"
+ "a16ab3ff-ce63-43d4-8293-69e6139dcbea"
],
"x-ms-correlation-request-id": [
- "b9a2056c-fb20-41d5-85a7-c52ba77c472b"
+ "a16ab3ff-ce63-43d4-8293-69e6139dcbea"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212519Z:b9a2056c-fb20-41d5-85a7-c52ba77c472b"
+ "WESTUS:20200321T010147Z:a16ab3ff-ce63-43d4-8293-69e6139dcbea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1261,15 +1180,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU9Ua3hNeTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU16UTBOQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1278,22 +1197,22 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:25:34 GMT"
+ "Sat, 21 Mar 2020 01:02:01 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11996"
],
"x-ms-request-id": [
- "4309065e-5bfe-461b-babf-dee20934dcc0"
+ "37d3a12d-cfd5-4c75-bfbb-197f87c6c560"
],
"x-ms-correlation-request-id": [
- "4309065e-5bfe-461b-babf-dee20934dcc0"
+ "37d3a12d-cfd5-4c75-bfbb-197f87c6c560"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212534Z:4309065e-5bfe-461b-babf-dee20934dcc0"
+ "WESTUS:20200321T010202Z:37d3a12d-cfd5-4c75-bfbb-197f87c6c560"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1312,15 +1231,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQOTkxMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU9Ua3hNeTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQMzQ0NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU16UTBOQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1329,22 +1248,22 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 21:25:34 GMT"
+ "Sat, 21 Mar 2020 01:02:01 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11995"
],
"x-ms-request-id": [
- "e0380406-c755-4ab8-bffb-9617e867ed08"
+ "60320299-e7bb-479c-a299-a0c40061543e"
],
"x-ms-correlation-request-id": [
- "e0380406-c755-4ab8-bffb-9617e867ed08"
+ "60320299-e7bb-479c-a299-a0c40061543e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T212534Z:e0380406-c755-4ab8-bffb-9617e867ed08"
+ "WESTUS:20200321T010202Z:60320299-e7bb-479c-a299-a0c40061543e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1365,10 +1284,10 @@
],
"Names": {
"CreateResourceGroup": [
- "FrontDoorResourceGroup9913"
+ "FrontDoorResourceGroup3444"
],
"FrontDoorCRUDTest": [
- "frontDoor3016"
+ "frontDoor7872"
]
},
"Variables": {
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTestWithRulesEngine.json b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTestWithRulesEngine.json
new file mode 100644
index 000000000000..9f1f79c5c504
--- /dev/null
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/FrontDoorTests/FrontDoorCRUDTestWithRulesEngine.json
@@ -0,0 +1,1890 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1fa9a29b-e482-45d8-b349-df5c08a4a3a8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:57:58 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "486353c8-cc8d-4490-ae4f-00a95abdd52b"
+ ],
+ "x-ms-correlation-request-id": [
+ "486353c8-cc8d-4490-ae4f-00a95abdd52b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005759Z:486353c8-cc8d-4490-ae4f-00a95abdd52b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "205"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465\",\r\n \"name\": \"FrontDoorResourceGroup6465\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor574\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n }\r\n },\r\n \"name\": \"backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"sendRecvTimeoutSeconds\": 123\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0080a98d-b9b9-4941-8d96-5d5cdcd8de2c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2995"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "63f87069-9733-4b55-9648-46018b437916"
+ ],
+ "x-ms-client-request-id": [
+ "0080a98d-b9b9-4941-8d96-5d5cdcd8de2c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/d5619980-7f93-42ac-a360-551242b943f1?api-version=2020-01-01"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "23cea754-8ad8-451b-9a6e-92d589fda016"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005802Z:23cea754-8ad8-451b-9a6e-92d589fda016"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "4702"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor574\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines/RulesEngine1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"loadBalancingSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"backendPool1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"name\": \"frontendEndpoint1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23c3b643-e617-4142-a7a3-e11382803317"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "4533"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/9102f01c-9941-40de-8973-821720bc6fc3/frontdoorresults/frontDoor574?api-version=2020-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "0c97caaf-922c-4344-a2ae-655d954c2f73"
+ ],
+ "x-ms-client-request-id": [
+ "23c3b643-e617-4142-a7a3-e11382803317"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/9102f01c-9941-40de-8973-821720bc6fc3?api-version=2020-01-01"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe1da905-ad71-4314-ad4f-33a0fe454867"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005816Z:fe1da905-ad71-4314-ad4f-33a0fe454867"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "6628"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RulesEngines/RulesEngine1\",\r\n \"name\": \"RulesEngine1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RulesEngines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines/RulesEngine1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"frontDoor574\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadBalancingSettings1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 120,\r\n \"healthProbeMethod\": \"Get\",\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"healthProbeSettings1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"weight\": 1\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n }\r\n },\r\n \"name\": \"backendPool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendEndpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"sendRecvTimeoutSeconds\": 123\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1292ef8-56c3-43ab-9814-731afa894fa2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2995"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/45ef95c7-7823-4ed5-bf6d-cf762441ba13/frontdoorresults/frontDoor574?api-version=2020-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "8d4b611d-6827-47d7-8c1f-92b22afd8018"
+ ],
+ "x-ms-client-request-id": [
+ "a1292ef8-56c3-43ab-9814-731afa894fa2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/45ef95c7-7823-4ed5-bf6d-cf762441ba13?api-version=2020-01-01"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b062e05-471f-4edb-b840-1ebd712f225f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005827Z:8b062e05-471f-4edb-b840-1ebd712f225f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "6426"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RulesEngines/RulesEngine1\",\r\n \"name\": \"RulesEngine1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RulesEngines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/d5619980-7f93-42ac-a360-551242b943f1?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzL2Q1NjE5OTgwLTdmOTMtNDJhYy1hMzYwLTU1MTI0MmI5NDNmMT9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "d6f4c7ff-70d0-4e29-824c-9acd36fc64e2"
+ ],
+ "x-ms-client-request-id": [
+ "c6f7d455-36f3-4371-ace8-b75f2904f7c7"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fa4dc35-a366-43f6-a387-01cfd0e085ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005813Z:8fa4dc35-a366-43f6-a387-01cfd0e085ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "77"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "a7e0734d-6673-4676-9298-6f390a851419"
+ ],
+ "x-ms-client-request-id": [
+ "71127e64-8fe5-49cf-a801-e9e1e115051c"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "a42612dc-faa6-44cc-a680-cb0367721a65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005813Z:a42612dc-faa6-44cc-a680-cb0367721a65"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "4697"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a1579f5-ffe1-4d17-aa8a-f50ba0ab7b5b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "ff4c8d55-abd4-4099-8db9-5141df4d797a"
+ ],
+ "x-ms-client-request-id": [
+ "1a1579f5-ffe1-4d17-aa8a-f50ba0ab7b5b"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b40a9a7-4e96-4289-81ad-1c7a753a8423"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005815Z:6b40a9a7-4e96-4289-81ad-1c7a753a8423"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "6426"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RulesEngines/RulesEngine1\",\r\n \"name\": \"RulesEngine1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RulesEngines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:26 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "ef292899-f54c-4c78-8d07-27965089af59"
+ ],
+ "x-ms-client-request-id": [
+ "42015d0c-624e-4194-9a38-c7c20e436bf5"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f077b2a-f929-4771-b1da-261ace652e0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005826Z:1f077b2a-f929-4771-b1da-261ace652e0f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "6628"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RulesEngines/RulesEngine1\",\r\n \"name\": \"RulesEngine1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RulesEngines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines/RulesEngine1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:58 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "b4f074e9-42dd-4850-b381-9a6246ae64f8"
+ ],
+ "x-ms-client-request-id": [
+ "3ab1de83-13b5-4cd1-bf1c-7e3eed3dcba0"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb7e3ba4-2512-496b-bb49-5cfbc00ba923"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005858Z:eb7e3ba4-2512-496b-bb49-5cfbc00ba923"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "6426"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"frontDoor574\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/BackendPools/backendPool1\",\r\n \"name\": \"backendPool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 2,\r\n \"weight\": 1,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/healthProbeSettings/healthProbeSettings1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/loadBalancingSettings/loadBalancingSettings1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/HealthProbeSettings/healthProbeSettings1\",\r\n \"name\": \"healthProbeSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 120,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\",\r\n \"healthProbeMethod\": \"Get\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/FrontendEndpoints/frontendEndpoint1\",\r\n \"name\": \"frontendEndpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"frontDoor574.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/LoadBalancingSettings/loadBalancingSettings1\",\r\n \"name\": \"loadBalancingSettings1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"rulesEngines\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RulesEngines/RulesEngine1\",\r\n \"name\": \"RulesEngine1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RulesEngines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/Frontdoors/frontDoor574/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/frontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"rulesEngine\": null\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\",\r\n \"sendRecvTimeoutSeconds\": 123\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"frontDoor574.azurefd.net\",\r\n \"frontdoorId\": \"7237df1c-7ee4-40ff-badb-6a1f841f4f3a\",\r\n \"friendlyName\": \"frontDoor574\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ba72ed7-e46f-4c33-be2c-5def507524e0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "046840e2-cd5c-4eff-ba70-3b7b9720fb2f"
+ ],
+ "x-ms-client-request-id": [
+ "0ba72ed7-e46f-4c33-be2c-5def507524e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "c90e8f20-02be-4980-9534-614fe2a81583"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005912Z:c90e8f20-02be-4980-9534-614fe2a81583"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "104"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Language": [
+ "en-US"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines/RulesEngine1?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3NC9ydWxlc0VuZ2luZXMvUnVsZXNFbmdpbmUxP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rules1\",\r\n \"priority\": 1,\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"dynamicCompression\": \"Disabled\"\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"selector\": \"Rules-engine-action\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"matchProcessingBehavior\": \"Stop\"\r\n }\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fbdd42e-9a73-4d4f-af89-eb0c426fdf3d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1265"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "9eb34b28-b774-4d4a-953c-6299f29335cc"
+ ],
+ "x-ms-client-request-id": [
+ "0fbdd42e-9a73-4d4f-af89-eb0c426fdf3d"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "58a26546-9ff9-4ece-a636-c3bdfe5953e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005814Z:58a26546-9ff9-4ece-a636-c3bdfe5953e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "1561"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"RulesEngine1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574/rulesengines/RulesEngine1\",\r\n \"type\": \"Microsoft.Network/frontdoors/rulesengines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3NC9ydWxlc0VuZ2luZXM/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f71c155-21de-43ed-b5da-b7217c4f001d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "b3228e65-7b49-4f83-b57e-f6cfe8413ef8"
+ ],
+ "x-ms-client-request-id": [
+ "6f71c155-21de-43ed-b5da-b7217c4f001d"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f6eeddc-9bd3-429d-bd1d-9f2360195e7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005814Z:4f6eeddc-9bd3-429d-bd1d-9f2360195e7c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "1701"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"RulesEngine1\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdoors/frontDoor574/rulesengines/RulesEngine1\",\r\n \"type\": \"Microsoft.Network/frontdoors/rulesengines\",\r\n \"properties\": {\r\n \"name\": \"RulesEngine1\",\r\n \"resourceGroup\": \"FrontDoorResourceGroup6465\",\r\n \"resourceState\": \"Enabled\",\r\n \"rules\": [\r\n {\r\n \"priority\": 1,\r\n \"name\": \"Rules1\",\r\n \"matchProcessingBehavior\": \"Stop\",\r\n \"action\": {\r\n \"requestHeaderActions\": [],\r\n \"responseHeaderActions\": [],\r\n \"routeConfigurationOverride\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"HttpsOnly\",\r\n \"cacheConfiguration\": {\r\n \"queryParameterStripDirective\": \"StripNone\",\r\n \"queryParameters\": null,\r\n \"dynamicCompression\": \"Disabled\",\r\n \"cacheDuration\": null\r\n },\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/backendPools/backendPool1\"\r\n }\r\n },\r\n \"name\": null\r\n },\r\n \"matchConditions\": [\r\n {\r\n \"rulesEngineMatchValue\": [\r\n \"Route-override-forwarding\"\r\n ],\r\n \"rulesEngineMatchVariable\": \"RequestHeader\",\r\n \"rulesEngineOperator\": \"Equal\",\r\n \"transforms\": [],\r\n \"negateCondition\": false,\r\n \"selector\": \"Rules-engine-action\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3NC9ydWxlc0VuZ2luZXM/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e36460b5-7370-464b-be36-f348c0b4d40f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "c5ad1643-0d30-4a08-9cb9-a8543d54b5bd"
+ ],
+ "x-ms-client-request-id": [
+ "e36460b5-7370-464b-be36-f348c0b4d40f"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f020658-138a-4d8c-87d0-15666e942c50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005859Z:2f020658-138a-4d8c-87d0-15666e942c50"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "28"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/9102f01c-9941-40de-8973-821720bc6fc3?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzkxMDJmMDFjLTk5NDEtNDBkZS04OTczLTgyMTcyMGJjNmZjMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:25 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "7da6cd9e-9f66-48a0-a82b-6f3ea7d92752"
+ ],
+ "x-ms-client-request-id": [
+ "0ecea5b4-3432-4f3d-87ee-d6f8d251e6c1"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc56dbdb-bc38-430e-b004-e3f27933b7ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005826Z:bc56dbdb-bc38-430e-b004-e3f27933b7ab"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "77"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/45ef95c7-7823-4ed5-bf6d-cf762441ba13?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzQ1ZWY5NWM3LTc4MjMtNGVkNS1iZjZkLWNmNzYyNDQxYmExMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "b1cf5259-672d-4222-9522-08bc22f6f03c"
+ ],
+ "x-ms-client-request-id": [
+ "01ae3d27-a251-4725-873b-fa5f594efae7"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6933c80-0f60-4db3-96c8-d9ae5d029044"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005837Z:b6933c80-0f60-4db3-96c8-d9ae5d029044"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "78"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/45ef95c7-7823-4ed5-bf6d-cf762441ba13?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzQ1ZWY5NWM3LTc4MjMtNGVkNS1iZjZkLWNmNzYyNDQxYmExMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "17b28f5e-caeb-4563-b775-cea2be0d4b5d"
+ ],
+ "x-ms-client-request-id": [
+ "74baae74-a2da-4266-9dda-f11684da950c"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "563cf1bf-63e8-455c-8659-0425f30eff4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005848Z:563cf1bf-63e8-455c-8659-0425f30eff4a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "78"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/45ef95c7-7823-4ed5-bf6d-cf762441ba13?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzQ1ZWY5NWM3LTc4MjMtNGVkNS1iZjZkLWNmNzYyNDQxYmExMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "75fa155b-f118-4c23-94ef-6332aac5224c"
+ ],
+ "x-ms-client-request-id": [
+ "ed6acb6e-de2d-4135-be42-7c611d7e0fea"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fbc58c5-0332-4952-bf79-9a3713171466"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005858Z:4fbc58c5-0332-4952-bf79-9a3713171466"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "77"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574/rulesEngines/RulesEngine1?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3NC9ydWxlc0VuZ2luZXMvUnVsZXNFbmdpbmUxP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86dcd69c-9ed3-4006-931b-cac2c8b183e8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:58 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "159525b1-d1ba-4bdc-8e03-bacd0868260b"
+ ],
+ "x-ms-client-request-id": [
+ "86dcd69c-9ed3-4006-931b-cac2c8b183e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "1002bb9c-3c1f-495b-8b15-7b6735288df2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005859Z:1002bb9c-3c1f-495b-8b15-7b6735288df2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontDoors/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udERvb3JzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9219e2e-bbe6-4185-b06c-d073aea83dc7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:58:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/4173842f-bdd1-46bb-adf4-6e3ce70c0a8d/frontdoorresults/frontDoor574?api-version=2020-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "31569276-1df8-482f-a430-25ae7267317b"
+ ],
+ "x-ms-client-request-id": [
+ "f9219e2e-bbe6-4185-b06c-d073aea83dc7"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/4173842f-bdd1-46bb-adf4-6e3ce70c0a8d?api-version=2020-01-01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "098bd47c-4dfe-45d2-ab7a-9f6e9fe61b30"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005900Z:098bd47c-4dfe-45d2-ab7a-9f6e9fe61b30"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/4173842f-bdd1-46bb-adf4-6e3ce70c0a8d?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzQxNzM4NDJmLWJkZDEtNDZiYi1hZGY0LTZlM2NlNzBjMGE4ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "010168ec-9bbc-472b-a286-4665708d1979"
+ ],
+ "x-ms-client-request-id": [
+ "b1233afe-e61f-49bf-ba98-9983707d5009"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "3eda4f48-d8d5-4466-98f8-7076b7024e54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005910Z:3eda4f48-d8d5-4466-98f8-7076b7024e54"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "77"
+ ],
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465/providers/Microsoft.Network/frontdooroperationresults/4173842f-bdd1-46bb-adf4-6e3ce70c0a8d/frontdoorresults/frontDoor574?api-version=2020-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9mcm9udGRvb3JvcGVyYXRpb25yZXN1bHRzLzQxNzM4NDJmLWJkZDEtNDZiYi1hZGY0LTZlM2NlNzBjMGE4ZC9mcm9udGRvb3JyZXN1bHRzL2Zyb250RG9vcjU3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-request-id": [
+ "061b5aad-d3d7-4f75-a33d-4927bf0b6ad5"
+ ],
+ "x-ms-client-request-id": [
+ "a7725eac-93de-44c3-b7e6-0ebc60e1f17f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "41d59d45-0814-4c76-9c3b-5dcd7c2f7a48"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005911Z:41d59d45-0814-4c76-9c3b-5dcd7c2f7a48"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup6465?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae7ce468-3131-4cf1-a038-41d64607f188"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "f1505b71-d815-415c-b0a3-e54eec302eee"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1505b71-d815-415c-b0a3-e54eec302eee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005912Z:f1505b71-d815-415c-b0a3-e54eec302eee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qUTJOUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "767d65ed-a540-44aa-834a-b222cd2fec7b"
+ ],
+ "x-ms-correlation-request-id": [
+ "767d65ed-a540-44aa-834a-b222cd2fec7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005927Z:767d65ed-a540-44aa-834a-b222cd2fec7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qUTJOUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "bd3377d7-a2ef-4aa6-8096-fc32c382b46e"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd3377d7-a2ef-4aa6-8096-fc32c382b46e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005942Z:bd3377d7-a2ef-4aa6-8096-fc32c382b46e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qUTJOUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 00:59:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "a71f6cea-1163-494f-bacc-1977320d0043"
+ ],
+ "x-ms-correlation-request-id": [
+ "a71f6cea-1163-494f-bacc-1977320d0043"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T005957Z:a71f6cea-1163-494f-bacc-1977320d0043"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qUTJOUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 01:00:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "8980c0b5-f825-4a51-b576-31c694622049"
+ ],
+ "x-ms-correlation-request-id": [
+ "8980c0b5-f825-4a51-b576-31c694622049"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T010012Z:8980c0b5-f825-4a51-b576-31c694622049"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjQ2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qUTJOUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sat, 21 Mar 2020 01:00:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "3f9ef590-27db-44f6-8b0f-5312dbb6350d"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f9ef590-27db-44f6-8b0f-5312dbb6350d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200321T010012Z:3f9ef590-27db-44f6-8b0f-5312dbb6350d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "CreateResourceGroup": [
+ "FrontDoorResourceGroup6465"
+ ],
+ "FrontDoorCRUDTestWithRulesEngine": [
+ "frontDoor574"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "47f4bc68-6fe4-43a2-be8b-dfd0e290efa2"
+ }
+}
\ No newline at end of file
diff --git a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/NetworkExperimentTests/NetworkExperimentCRUDTest.json b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/NetworkExperimentTests/NetworkExperimentCRUDTest.json
index 8dd387c97a2e..0284967d836b 100644
--- a/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/NetworkExperimentTests/NetworkExperimentCRUDTest.json
+++ b/sdk/frontdoor/Microsoft.Azure.Management.FrontDoor/tests/SessionRecords/NetworkExperimentTests/NetworkExperimentCRUDTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19abc325-01f2-450d-bdce-df71f9841266"
+ "87c002c3-957d-4156-9437-f27637354f00"
],
"accept-language": [
"en-US"
@@ -15,7 +15,7 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -30,22 +30,22 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:55:22 GMT"
+ "Tue, 24 Mar 2020 22:18:17 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "8a48c5c7-5dad-470b-8f7f-61692629e484"
+ "471225ff-e852-4757-bf6e-a07ea62ed232"
],
"x-ms-correlation-request-id": [
- "8a48c5c7-5dad-470b-8f7f-61692629e484"
+ "471225ff-e852-4757-bf6e-a07ea62ed232"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235523Z:8a48c5c7-5dad-470b-8f7f-61692629e484"
+ "WESTUS:20200324T221817Z:471225ff-e852-4757-bf6e-a07ea62ed232"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200\",\r\n \"name\": \"FrontDoorResourceGroup6200\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409\",\r\n \"name\": \"FrontDoorResourceGroup4409\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"EastUS\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9998abf3-255a-4599-846d-d9a6034a91e9"
+ "4bc9c1b2-2f94-4cd4-883c-d0bef1a07ef2"
],
"accept-language": [
"en-US"
@@ -81,8 +81,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:55:51 GMT"
+ "Tue, 24 Mar 2020 22:18:44 GMT"
],
"Pragma": [
"no-cache"
@@ -105,10 +105,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "720aa392-b559-4373-b69b-b98197bff064"
+ "267743a9-e67d-41ce-8870-d95a589881da"
],
"x-ms-client-request-id": [
- "9998abf3-255a-4599-846d-d9a6034a91e9"
+ "4bc9c1b2-2f94-4cd4-883c-d0bef1a07ef2"
],
"OData-Version": [
"4.0"
@@ -123,13 +123,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "6ad70b71-6bc3-4895-a73b-c26681b1a355"
+ "9c7bcdf2-bdff-4a8a-8593-df0f5c60690b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235551Z:6ad70b71-6bc3-4895-a73b-c26681b1a355"
+ "WESTUS:20200324T221845Z:9c7bcdf2-bdff-4a8a-8593-df0f5c60690b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -144,17 +144,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile9390\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile6323\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55eea94e-67a2-47fb-9312-44b493ad94f0"
+ "783998cc-dcd9-404f-a06b-f982f75b85f0"
],
"accept-language": [
"en-US"
@@ -162,8 +162,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -177,7 +177,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:56:29 GMT"
+ "Tue, 24 Mar 2020 22:19:23 GMT"
],
"Pragma": [
"no-cache"
@@ -186,10 +186,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "ee1ffc7e-5334-40d2-b442-3ad8072c11e8"
+ "bbe80bc5-1b33-4e05-b3fc-85e72ec3f245"
],
"x-ms-client-request-id": [
- "55eea94e-67a2-47fb-9312-44b493ad94f0"
+ "783998cc-dcd9-404f-a06b-f982f75b85f0"
],
"OData-Version": [
"4.0"
@@ -204,13 +204,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c39de983-941a-45f0-8cac-9ba268294688"
+ "e02c93b2-ca6a-4139-9408-84d9ef3bd00b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235630Z:c39de983-941a-45f0-8cac-9ba268294688"
+ "WESTUS:20200324T221923Z:e02c93b2-ca6a-4139-9408-84d9ef3bd00b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -225,20 +225,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile9390\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile6323\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -246,7 +246,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:56:22 GMT"
+ "Tue, 24 Mar 2020 22:19:15 GMT"
],
"Pragma": [
"no-cache"
@@ -255,10 +255,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "226e981c-c1c2-4c2d-921a-6bbd42a8da5f"
+ "59c9664a-548d-4db3-96a1-14b235284944"
],
"x-ms-client-request-id": [
- "3968f738-df84-4123-9a2a-47d3d016c0e3"
+ "a68733b1-c7fe-45d0-880c-0206754ab608"
],
"OData-Version": [
"4.0"
@@ -276,10 +276,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0f1b65f2-644f-4e6f-8788-ef51f980357f"
+ "9bf5c9b8-5152-40b4-8acd-80f529c65d35"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235622Z:0f1b65f2-644f-4e6f-8788-ef51f980357f"
+ "WESTUS:20200324T221915Z:9bf5c9b8-5152-40b4-8acd-80f529c65d35"
],
"X-Content-Type-Options": [
"nosniff"
@@ -294,17 +294,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile9390\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile6323\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a4c0121-3a47-4fc0-b36f-9a956e8c460a"
+ "64f329ca-3adf-4789-bf32-9bececc2a368"
],
"accept-language": [
"en-US"
@@ -312,8 +312,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -321,7 +321,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:56:23 GMT"
+ "Tue, 24 Mar 2020 22:19:16 GMT"
],
"Pragma": [
"no-cache"
@@ -330,10 +330,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "396b7156-364e-4f3e-b093-44daa66287b3"
+ "1e2b1e0c-28f1-49cf-bb75-6a21eae7bc60"
],
"x-ms-client-request-id": [
- "5a4c0121-3a47-4fc0-b36f-9a956e8c460a"
+ "64f329ca-3adf-4789-bf32-9bececc2a368"
],
"OData-Version": [
"4.0"
@@ -351,10 +351,10 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f5b87cc9-fad8-4103-8e2f-5030d53ce81b"
+ "ad228610-bc0e-4867-be64-5e12b668966c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235623Z:f5b87cc9-fad8-4103-8e2f-5030d53ce81b"
+ "WESTUS:20200324T221916Z:ad228610-bc0e-4867-be64-5e12b668966c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -369,17 +369,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile9390\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"networkExperimentProfile6323\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ce12cd3-1c3b-4e7c-ae96-e49841d56125"
+ "41cc6314-1a28-457a-8503-c47fb25f1141"
],
"accept-language": [
"en-US"
@@ -387,8 +387,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -396,7 +396,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:26 GMT"
+ "Tue, 24 Mar 2020 22:20:12 GMT"
],
"Pragma": [
"no-cache"
@@ -405,13 +405,13 @@
"gateway"
],
"x-ms-request-id": [
- "5e633576-21e3-4a5c-bfbc-c227c20aa973"
+ "79b3a4c5-05c3-4f00-8d51-b0afd8f60c5d"
],
"x-ms-correlation-request-id": [
- "5e633576-21e3-4a5c-bfbc-c227c20aa973"
+ "79b3a4c5-05c3-4f00-8d51-b0afd8f60c5d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235726Z:5e633576-21e3-4a5c-bfbc-c227c20aa973"
+ "WESTUS:20200324T222013Z:79b3a4c5-05c3-4f00-8d51-b0afd8f60c5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -429,17 +429,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkExperimentProfiles/networkExperimentProfile9390' under resource group 'FrontDoorResourceGroup6200' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkExperimentProfiles/networkExperimentProfile6323' under resource group 'FrontDoorResourceGroup4409' was not found.\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390/Experiments/experiment5550?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTAvRXhwZXJpbWVudHMvZXhwZXJpbWVudDU1NTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323/Experiments/experiment4230?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjMvRXhwZXJpbWVudHMvZXhwZXJpbWVudDQyMzA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43503b45-0434-44cc-b6bd-f1f7f745cc6d"
+ "df3faaee-b681-46c3-aaf3-5dd65e9cdf52"
],
"accept-language": [
"en-US"
@@ -447,8 +447,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,7 +462,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:56:35 GMT"
+ "Tue, 24 Mar 2020 22:19:28 GMT"
],
"Pragma": [
"no-cache"
@@ -471,10 +471,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "a14e0cc7-7798-4fc5-86d2-f11f77174495"
+ "473488c7-f7de-49cc-856d-45ac68b4d645"
],
"x-ms-client-request-id": [
- "43503b45-0434-44cc-b6bd-f1f7f745cc6d"
+ "df3faaee-b681-46c3-aaf3-5dd65e9cdf52"
],
"OData-Version": [
"4.0"
@@ -489,19 +489,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "1bca754d-168e-4676-8574-db07b6e9164e"
+ "819b4e40-f10d-4124-a63c-5c1232d51952"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235636Z:1bca754d-168e-4676-8574-db07b6e9164e"
+ "WESTUS:20200324T221928Z:819b4e40-f10d-4124-a63c-5c1232d51952"
],
"X-Content-Type-Options": [
"nosniff"
],
"Content-Length": [
- "653"
+ "658"
],
"Content-Type": [
"application/json; odata.metadata=minimal"
@@ -510,20 +510,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"experiment5550\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390/experiments/experiment5550\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/cd0c3805eefc4cdeadc36da2a14bf20a/ab.min.js\",\r\n \"status\": null,\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"experiment4230\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323/experiments/experiment4230\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/dc16b9f861974d7cbe3c13a318157d3b/ab.min.js\",\r\n \"status\": \"Created\",\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390/Experiments/experiment5550?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTAvRXhwZXJpbWVudHMvZXhwZXJpbWVudDU1NTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323/Experiments/experiment4230?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjMvRXhwZXJpbWVudHMvZXhwZXJpbWVudDQyMzA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -531,7 +531,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:07 GMT"
+ "Tue, 24 Mar 2020 22:19:58 GMT"
],
"Pragma": [
"no-cache"
@@ -540,10 +540,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "b351536d-8060-4126-ab63-583ed8f4c826"
+ "a3f3c82a-0abb-40be-a22c-1e8ce875be70"
],
"x-ms-client-request-id": [
- "a63ba8a5-020b-4ab8-b9c7-a5d0b0881502"
+ "8e6489d3-b780-465f-be20-ce9c209c163f"
],
"OData-Version": [
"4.0"
@@ -561,10 +561,10 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f2c0b6da-2151-47db-a35c-361f1dce9229"
+ "6df1051d-90de-4485-8e52-6b1af8e7a917"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235707Z:f2c0b6da-2151-47db-a35c-361f1dce9229"
+ "WESTUS:20200324T221959Z:6df1051d-90de-4485-8e52-6b1af8e7a917"
],
"X-Content-Type-Options": [
"nosniff"
@@ -579,17 +579,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"experiment5550\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390/experiments/experiment5550\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/cd0c3805eefc4cdeadc36da2a14bf20a/ab.min.js\",\r\n \"status\": \"Enabled\",\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"experiment4230\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323/experiments/experiment4230\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/dc16b9f861974d7cbe3c13a318157d3b/ab.min.js\",\r\n \"status\": \"Created\",\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390/Experiments/experiment5550?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTAvRXhwZXJpbWVudHMvZXhwZXJpbWVudDU1NTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323/Experiments/experiment4230?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjMvRXhwZXJpbWVudHMvZXhwZXJpbWVudDQyMzA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c94184d-0ba2-4526-9db7-d6ff63b076e1"
+ "0dabe32b-d8b6-4ddb-8d82-38c77b265eee"
],
"accept-language": [
"en-US"
@@ -597,8 +597,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -606,7 +606,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:07 GMT"
+ "Tue, 24 Mar 2020 22:19:59 GMT"
],
"Pragma": [
"no-cache"
@@ -615,10 +615,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "18367f7a-039e-4bb6-9c8c-9b7506262fe0"
+ "6193a6ff-fe2e-4783-9a39-9c35dd3127b5"
],
"x-ms-client-request-id": [
- "3c94184d-0ba2-4526-9db7-d6ff63b076e1"
+ "0dabe32b-d8b6-4ddb-8d82-38c77b265eee"
],
"OData-Version": [
"4.0"
@@ -636,10 +636,10 @@
"11996"
],
"x-ms-correlation-request-id": [
- "315bb832-8c83-42e5-9be7-faefdc36bae2"
+ "a49c9f64-68d6-42ea-b042-ea509869232d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235707Z:315bb832-8c83-42e5-9be7-faefdc36bae2"
+ "WESTUS:20200324T222000Z:a49c9f64-68d6-42ea-b042-ea509869232d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -654,17 +654,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"experiment5550\",\r\n \"id\": \"/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile9390/experiments/experiment5550\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/cd0c3805eefc4cdeadc36da2a14bf20a/ab.min.js\",\r\n \"status\": \"Enabled\",\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"experiment4230\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/networkexperimentprofiles/networkExperimentProfile6323/experiments/experiment4230\",\r\n \"type\": \"Microsoft.Network/networkexperimentprofiles/experiments\",\r\n \"properties\": {\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"description\": null,\r\n \"scriptFileUri\": \"https://fpc.msedge.net/client/v2/dc16b9f861974d7cbe3c13a318157d3b/ab.min.js\",\r\n \"status\": \"Created\",\r\n \"endpointA\": {\r\n \"name\": \"bing\",\r\n \"endpoint\": \"www.bing.com\"\r\n },\r\n \"endpointB\": {\r\n \"name\": \"contoso\",\r\n \"endpoint\": \"www.constoso.com\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390/Experiments/experiment5550?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTAvRXhwZXJpbWVudHMvZXhwZXJpbWVudDU1NTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323/Experiments/experiment4230?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjMvRXhwZXJpbWVudHMvZXhwZXJpbWVudDQyMzA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15739c87-0a7d-4b7c-ab89-bb15a95d405c"
+ "84613f66-7eea-4382-847d-19dc4008523c"
],
"accept-language": [
"en-US"
@@ -672,8 +672,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,7 +681,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:15 GMT"
+ "Tue, 24 Mar 2020 22:20:04 GMT"
],
"Pragma": [
"no-cache"
@@ -690,10 +690,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "0bc6071e-de73-43c9-a4ae-d5202b153342"
+ "8884733e-04d8-48b8-b0a9-ae31425e5618"
],
"x-ms-client-request-id": [
- "15739c87-0a7d-4b7c-ab89-bb15a95d405c"
+ "84613f66-7eea-4382-847d-19dc4008523c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -708,10 +708,10 @@
"11995"
],
"x-ms-correlation-request-id": [
- "fe1bf4d8-e16a-44a1-8d5f-432a26eac070"
+ "534c950c-be3d-4d11-92eb-9193fa792c9f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235715Z:fe1bf4d8-e16a-44a1-8d5f-432a26eac070"
+ "WESTUS:20200324T222005Z:534c950c-be3d-4d11-92eb-9193fa792c9f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -733,13 +733,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390/Experiments/experiment5550?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTAvRXhwZXJpbWVudHMvZXhwZXJpbWVudDU1NTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323/Experiments/experiment4230?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjMvRXhwZXJpbWVudHMvZXhwZXJpbWVudDQyMzA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb70b29e-1caa-4125-99e5-df58af2962ff"
+ "deaaa9de-4314-464b-ac06-8ddab0676699"
],
"accept-language": [
"en-US"
@@ -747,8 +747,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,7 +756,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:14 GMT"
+ "Tue, 24 Mar 2020 22:20:04 GMT"
],
"Pragma": [
"no-cache"
@@ -765,10 +765,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "d683d7ab-ec93-43d4-b7d6-b3ecd563eca8"
+ "74f8cbc2-355f-488a-bd1c-d7c2a8f758e4"
],
"x-ms-client-request-id": [
- "cb70b29e-1caa-4125-99e5-df58af2962ff"
+ "deaaa9de-4314-464b-ac06-8ddab0676699"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -783,10 +783,10 @@
"14999"
],
"x-ms-correlation-request-id": [
- "0096ba2a-0b88-4c3c-a332-090f9d899600"
+ "d99d225a-def5-493d-a10a-b8e304085d69"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235715Z:0096ba2a-0b88-4c3c-a332-090f9d899600"
+ "WESTUS:20200324T222005Z:d99d225a-def5-493d-a10a-b8e304085d69"
],
"X-Content-Type-Options": [
"nosniff"
@@ -802,13 +802,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourceGroups/FrontDoorResourceGroup6200/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile9390?api-version=2019-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTkzOTA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/FrontDoorResourceGroup4409/providers/Microsoft.Network/NetworkExperimentProfiles/networkExperimentProfile6323?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9OZXR3b3JrRXhwZXJpbWVudFByb2ZpbGVzL25ldHdvcmtFeHBlcmltZW50UHJvZmlsZTYzMjM/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d89bcc51-b968-45d8-972f-076ef9b207c4"
+ "b2bded76-7b6f-427e-88f7-052cf9d45421"
],
"accept-language": [
"en-US"
@@ -816,8 +816,8 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/1.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/2.0.0.0"
]
},
"ResponseHeaders": {
@@ -825,7 +825,7 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:26 GMT"
+ "Tue, 24 Mar 2020 22:20:12 GMT"
],
"Pragma": [
"no-cache"
@@ -834,10 +834,10 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "45fd0637-45ac-42d6-8128-f80a7039e87a"
+ "91778152-03fb-4f30-a04c-d4cec575c813"
],
"x-ms-client-request-id": [
- "d89bcc51-b968-45d8-972f-076ef9b207c4"
+ "b2bded76-7b6f-427e-88f7-052cf9d45421"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -852,10 +852,10 @@
"14998"
],
"x-ms-correlation-request-id": [
- "7e9e3bb2-7f8e-4ad0-9b9c-7155e18d3d84"
+ "3c7c6aae-6c13-4299-8eca-28cd88143c96"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235726Z:7e9e3bb2-7f8e-4ad0-9b9c-7155e18d3d84"
+ "WESTUS:20200324T222013Z:3c7c6aae-6c13-4299-8eca-28cd88143c96"
],
"X-Content-Type-Options": [
"nosniff"
@@ -871,13 +871,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/resourcegroups/FrontDoorResourceGroup6200?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA2MjAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/FrontDoorResourceGroup4409?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL0Zyb250RG9vclJlc291cmNlR3JvdXA0NDA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a03f1c21-db6b-42c9-bba7-df65cb8c86c7"
+ "fec64af4-cdf6-4201-8363-41872e8238a0"
],
"accept-language": [
"en-US"
@@ -885,7 +885,7 @@
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -894,28 +894,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:26 GMT"
+ "Tue, 24 Mar 2020 22:20:13 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-request-id": [
- "2e633ac5-253d-4d9c-bfd1-27287362d98e"
+ "ad96b398-0239-4d98-8ec1-efac67820391"
],
"x-ms-correlation-request-id": [
- "2e633ac5-253d-4d9c-bfd1-27287362d98e"
+ "ad96b398-0239-4d98-8ec1-efac67820391"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235727Z:2e633ac5-253d-4d9c-bfd1-27287362d98e"
+ "WESTUS:20200324T222013Z:ad96b398-0239-4d98-8ec1-efac67820391"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -934,15 +934,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qSXdNQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -951,28 +951,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:42 GMT"
+ "Tue, 24 Mar 2020 22:20:28 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11990"
],
"x-ms-request-id": [
- "5dd32772-cc08-424e-af5a-e734773f48a4"
+ "2aae792e-f32f-46dc-8a86-3f9ce8df1c49"
],
"x-ms-correlation-request-id": [
- "5dd32772-cc08-424e-af5a-e734773f48a4"
+ "2aae792e-f32f-46dc-8a86-3f9ce8df1c49"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235742Z:5dd32772-cc08-424e-af5a-e734773f48a4"
+ "WESTUS:20200324T222028Z:2aae792e-f32f-46dc-8a86-3f9ce8df1c49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -991,15 +991,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qSXdNQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1008,28 +1008,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:57:57 GMT"
+ "Tue, 24 Mar 2020 22:20:43 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11989"
],
"x-ms-request-id": [
- "4c54cf5a-5f2a-4346-9c2d-67fe79d931ce"
+ "8eb02902-0869-4da1-8d04-55dc1ac576d6"
],
"x-ms-correlation-request-id": [
- "4c54cf5a-5f2a-4346-9c2d-67fe79d931ce"
+ "8eb02902-0869-4da1-8d04-55dc1ac576d6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235758Z:4c54cf5a-5f2a-4346-9c2d-67fe79d931ce"
+ "WESTUS:20200324T222043Z:8eb02902-0869-4da1-8d04-55dc1ac576d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1048,15 +1048,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qSXdNQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1065,28 +1065,28 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:58:12 GMT"
+ "Tue, 24 Mar 2020 22:20:58 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11988"
],
"x-ms-request-id": [
- "a03d3797-c651-487a-ad0a-6a36dd2e2b87"
+ "0cb7f536-930d-467f-9385-093c16d40e35"
],
"x-ms-correlation-request-id": [
- "a03d3797-c651-487a-ad0a-6a36dd2e2b87"
+ "0cb7f536-930d-467f-9385-093c16d40e35"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235813Z:a03d3797-c651-487a-ad0a-6a36dd2e2b87"
+ "WESTUS:20200324T222058Z:0cb7f536-930d-467f-9385-093c16d40e35"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1105,15 +1105,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qSXdNQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1122,22 +1122,79 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:58:28 GMT"
+ "Tue, 24 Mar 2020 22:21:13 GMT"
],
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11987"
],
"x-ms-request-id": [
- "4095d630-6e8a-4415-8668-83b66c7be5bc"
+ "9d96d86e-3298-4471-b435-67a165ac8e79"
],
"x-ms-correlation-request-id": [
- "4095d630-6e8a-4415-8668-83b66c7be5bc"
+ "9d96d86e-3298-4471-b435-67a165ac8e79"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235828Z:4095d630-6e8a-4415-8668-83b66c7be5bc"
+ "WESTUS:20200324T222113Z:9d96d86e-3298-4471-b435-67a165ac8e79"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 24 Mar 2020 22:21:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "bc6b87b8-f5a2-4d24-8f4e-355c4a18e8b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc6b87b8-f5a2-4d24-8f4e-355c4a18e8b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200324T222128Z:bc6b87b8-f5a2-4d24-8f4e-355c4a18e8b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1156,15 +1213,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0cfb6008-a4e8-4f8a-933c-725911bc52f9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNjIwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGNmYjYwMDgtYTRlOC00ZjhhLTkzM2MtNzI1OTExYmM1MmY5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5qSXdNQzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GUk9OVERPT1JSRVNPVVJDRUdST1VQNDQwOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHVWs5T1ZFUlBUMUpTUlZOUFZWSkRSVWRTVDFWUU5EUXdPUzFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.26614.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19555.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1173,22 +1230,22 @@
"no-cache"
],
"Date": [
- "Mon, 04 Nov 2019 23:58:28 GMT"
+ "Tue, 24 Mar 2020 22:21:28 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11985"
],
"x-ms-request-id": [
- "dd89961e-a047-4398-bd62-7327e878ba66"
+ "b7e74910-b2aa-41af-9109-b3fd2c39e4a4"
],
"x-ms-correlation-request-id": [
- "dd89961e-a047-4398-bd62-7327e878ba66"
+ "b7e74910-b2aa-41af-9109-b3fd2c39e4a4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20191104T235828Z:dd89961e-a047-4398-bd62-7327e878ba66"
+ "WESTUS:20200324T222129Z:b7e74910-b2aa-41af-9109-b3fd2c39e4a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1209,14 +1266,14 @@
],
"Names": {
"CreateResourceGroup": [
- "FrontDoorResourceGroup6200"
+ "FrontDoorResourceGroup4409"
],
"NetworkExperimentCRUDTest": [
- "networkExperimentProfile9390",
- "experiment5550"
+ "networkExperimentProfile6323",
+ "experiment4230"
]
},
"Variables": {
- "SubscriptionId": "0cfb6008-a4e8-4f8a-933c-725911bc52f9"
+ "SubscriptionId": "47f4bc68-6fe4-43a2-be8b-dfd0e290efa2"
}
}
\ No newline at end of file