diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs index 97ea7720f039..42640d42ecba 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs @@ -232,6 +232,11 @@ public partial interface ISqlManagementClient : System.IDisposable /// ISubscriptionUsagesOperations SubscriptionUsages { get; } + /// + /// Gets the IVirtualClustersOperations. + /// + IVirtualClustersOperations VirtualClusters { get; } + /// /// Gets the IVirtualNetworkRulesOperations. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/IVirtualClustersOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/IVirtualClustersOperations.cs new file mode 100644 index 000000000000..23a69eddfd98 --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/IVirtualClustersOperations.cs @@ -0,0 +1,249 @@ +// +// 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.Sql +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// VirtualClustersOperations operations. + /// + public partial interface IVirtualClustersOperations + { + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualCluster.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualCluster.cs new file mode 100644 index 000000000000..5b9b536fffc8 --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualCluster.cs @@ -0,0 +1,92 @@ +// +// 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.Sql.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// An Azure SQL virtual cluster. + /// + [Rest.Serialization.JsonTransformation] + public partial class VirtualCluster : TrackedResource + { + /// + /// Initializes a new instance of the VirtualCluster class. + /// + public VirtualCluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VirtualCluster class. + /// + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + /// Subnet resource ID for the virtual + /// cluster. + /// If the service has different generations of + /// hardware, for the same SKU, then that can be captured here. + /// List of resources in this virtual + /// cluster. + public VirtualCluster(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string subnetId = default(string), string family = default(string), IList childResources = default(IList)) + : base(location, id, name, type, tags) + { + SubnetId = subnetId; + Family = family; + ChildResources = childResources; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets subnet resource ID for the virtual cluster. + /// + [JsonProperty(PropertyName = "properties.subnetId")] + public string SubnetId { get; private set; } + + /// + /// Gets or sets if the service has different generations of hardware, + /// for the same SKU, then that can be captured here. + /// + [JsonProperty(PropertyName = "properties.family")] + public string Family { get; set; } + + /// + /// Gets list of resources in this virtual cluster. + /// + [JsonProperty(PropertyName = "properties.childResources")] + public IList ChildResources { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualClusterUpdate.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualClusterUpdate.cs new file mode 100644 index 000000000000..3bb25968e80f --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/VirtualClusterUpdate.cs @@ -0,0 +1,84 @@ +// +// 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.Sql.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// An update request for an Azure SQL Database virtual cluster. + /// + [Rest.Serialization.JsonTransformation] + public partial class VirtualClusterUpdate + { + /// + /// Initializes a new instance of the VirtualClusterUpdate class. + /// + public VirtualClusterUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VirtualClusterUpdate class. + /// + /// Subnet resource ID for the virtual + /// cluster. + /// If the service has different generations of + /// hardware, for the same SKU, then that can be captured here. + /// List of resources in this virtual + /// cluster. + /// Resource tags. + public VirtualClusterUpdate(string subnetId = default(string), string family = default(string), IList childResources = default(IList), IDictionary tags = default(IDictionary)) + { + SubnetId = subnetId; + Family = family; + ChildResources = childResources; + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets subnet resource ID for the virtual cluster. + /// + [JsonProperty(PropertyName = "properties.subnetId")] + public string SubnetId { get; private set; } + + /// + /// Gets or sets if the service has different generations of hardware, + /// for the same SKU, then that can be captured here. + /// + [JsonProperty(PropertyName = "properties.family")] + public string Family { get; set; } + + /// + /// Gets list of resources in this virtual cluster. + /// + [JsonProperty(PropertyName = "properties.childResources")] + public IList ChildResources { get; private set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs index 5576ae7c01ea..8919e306a6e7 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs @@ -95,6 +95,7 @@ public static IEnumerable> ApiInfo_SqlManagementCl new Tuple("Sql", "TdeCertificates", "2017-10-01-preview"), new Tuple("Sql", "TransparentDataEncryptionActivities", "2014-04-01"), new Tuple("Sql", "TransparentDataEncryptions", "2014-04-01"), + new Tuple("Sql", "VirtualClusters", "2015-05-01-preview"), new Tuple("Sql", "VirtualNetworkRules", "2015-05-01-preview"), }.AsEnumerable(); } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs index c56035038dbf..35b30b933cbd 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs @@ -237,6 +237,11 @@ public partial class SqlManagementClient : ServiceClient, I /// public virtual ISubscriptionUsagesOperations SubscriptionUsages { get; private set; } + /// + /// Gets the IVirtualClustersOperations. + /// + public virtual IVirtualClustersOperations VirtualClusters { get; private set; } + /// /// Gets the IVirtualNetworkRulesOperations. /// @@ -442,19 +447,6 @@ public partial class SqlManagementClient : ServiceClient, I /// public virtual IServerVulnerabilityAssessmentsOperations ServerVulnerabilityAssessments { get; private set; } - /// - /// Initializes a new instance of the SqlManagementClient class. - /// - /// - /// HttpClient to be used - /// - /// - /// True: will dispose the provided httpClient on calling SqlManagementClient.Dispose(). False: will not dispose provided httpClient - protected SqlManagementClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) - { - Initialize(); - } - /// /// Initializes a new instance of the SqlManagementClient class. /// @@ -550,33 +542,6 @@ public SqlManagementClient(ServiceClientCredentials credentials, params Delegati } } - /// - /// Initializes a new instance of the SqlManagementClient class. - /// - /// - /// Required. Credentials needed for the client to connect to Azure. - /// - /// - /// HttpClient to be used - /// - /// - /// True: will dispose the provided httpClient on calling SqlManagementClient.Dispose(). False: will not dispose provided httpClient - /// - /// Thrown when a required parameter is null - /// - public SqlManagementClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) - { - if (credentials == null) - { - throw new System.ArgumentNullException("credentials"); - } - Credentials = credentials; - if (Credentials != null) - { - Credentials.InitializeServiceClient(this); - } - } - /// /// Initializes a new instance of the SqlManagementClient class. /// @@ -716,6 +681,7 @@ private void Initialize() SyncGroups = new SyncGroupsOperations(this); SyncMembers = new SyncMembersOperations(this); SubscriptionUsages = new SubscriptionUsagesOperations(this); + VirtualClusters = new VirtualClustersOperations(this); VirtualNetworkRules = new VirtualNetworkRulesOperations(this); ExtendedDatabaseBlobAuditingPolicies = new ExtendedDatabaseBlobAuditingPoliciesOperations(this); ExtendedServerBlobAuditingPolicies = new ExtendedServerBlobAuditingPoliciesOperations(this); diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperations.cs new file mode 100644 index 000000000000..73d877d3653b --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperations.cs @@ -0,0 +1,1389 @@ +// +// 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.Sql +{ + 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; + + /// + /// VirtualClustersOperations operations. + /// + internal partial class VirtualClustersOperations : IServiceOperations, IVirtualClustersOperations + { + /// + /// Initializes a new instance of the VirtualClustersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal VirtualClustersOperations(SqlManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SqlManagementClient + /// + public SqlManagementClient Client { get; private set; } + + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Sql/virtualClusters").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("GET"); + _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; + // 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/virtualClusters").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _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("GET"); + _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; + // 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (virtualClusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualClusterName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("virtualClusterName", virtualClusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/virtualClusters/{virtualClusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{virtualClusterName}", System.Uri.EscapeDataString(virtualClusterName)); + _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("GET"); + _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; + // 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, virtualClusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, virtualClusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (virtualClusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualClusterName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("virtualClusterName", virtualClusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/virtualClusters/{virtualClusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{virtualClusterName}", System.Uri.EscapeDataString(virtualClusterName)); + _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("DELETE"); + _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; + // 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 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (virtualClusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualClusterName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("virtualClusterName", virtualClusterName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/virtualClusters/{virtualClusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{virtualClusterName}", System.Uri.EscapeDataString(virtualClusterName)); + _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("PATCH"); + _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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + // 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + // 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperationsExtensions.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperationsExtensions.cs new file mode 100644 index 000000000000..473eec8ddc00 --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/VirtualClustersOperationsExtensions.cs @@ -0,0 +1,373 @@ +// +// 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.Sql +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for VirtualClustersOperations. + /// + public static partial class VirtualClustersOperationsExtensions + { + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IVirtualClustersOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IVirtualClustersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + public static IPage ListByResourceGroup(this IVirtualClustersOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IVirtualClustersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + public static VirtualCluster Get(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName) + { + return operations.GetAsync(resourceGroupName, virtualClusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, virtualClusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + public static void Delete(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName) + { + operations.DeleteAsync(resourceGroupName, virtualClusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, virtualClusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + public static VirtualCluster Update(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters) + { + return operations.UpdateAsync(resourceGroupName, virtualClusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, virtualClusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + public static void BeginDelete(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName) + { + operations.BeginDeleteAsync(resourceGroupName, virtualClusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, virtualClusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + public static VirtualCluster BeginUpdate(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, virtualClusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a virtual cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the virtual cluster. + /// + /// + /// The requested managed instance resource state. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IVirtualClustersOperations operations, string resourceGroupName, string virtualClusterName, VirtualClusterUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, virtualClusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IVirtualClustersOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all virtualClusters in the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IVirtualClustersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IVirtualClustersOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of virtual clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IVirtualClustersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj index 47bb77833304..c0f4b516e59f 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj +++ b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj @@ -7,11 +7,12 @@ Microsoft.Azure.Management.Sql Azure SQL Management SDK library Microsoft.Azure.Management.Sql - 1.28.0-preview + 1.29.0-preview Microsoft Azure SQL Management;SQL;SQL Management; diff --git a/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs b/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs index fbdeea31d0fd..22bb8dba3f26 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ [assembly: AssemblyTitle("Microsoft Azure SQL Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.28.0.0")] +[assembly: AssemblyFileVersion("1.29.0.0")] diff --git a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.VirtualClusterCrudScenarioTests/TestCreateGetDeleteVirtualCluster.json b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.VirtualClusterCrudScenarioTests/TestCreateGetDeleteVirtualCluster.json new file mode 100644 index 000000000000..a51d25f962b5 --- /dev/null +++ b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.VirtualClusterCrudScenarioTests/TestCreateGetDeleteVirtualCluster.json @@ -0,0 +1,16216 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NxbGNsLXZjY3J1ZHRlc3RzLWRvdG5ldHNkazE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!Pa$$w0rd1\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e90d0a3d-b24e-44cd-8997-15c9dfe5ed94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "482" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceOperationResults/f76f5461-5882-4048-9e86-a84f392d1774?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f76f5461-5882-4048-9e86-a84f392d1774?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "f76f5461-5882-4048-9e86-a84f392d1774" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bb5e6476-8ad5-4cdf-8682-45f3eba2ac51" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143456Z:bb5e6476-8ad5-4cdf-8682-45f3eba2ac51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:34:55 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2019-03-20T14:34:56.027Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f76f5461-5882-4048-9e86-a84f392d1774?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZjc2ZjU0NjEtNTg4Mi00MDQ4LTllODYtYTg0ZjM5MmQxNzc0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "3ddde954-5f40-4437-ab09-6a0170e01825" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f9d4e46a-e6ce-4d7f-8d17-fac88e57fc56" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143556Z:f9d4e46a-e6ce-4d7f-8d17-fac88e57fc56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:35:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f76f5461-5882-4048-9e86-a84f392d1774\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:34:56.027Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f76f5461-5882-4048-9e86-a84f392d1774?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZjc2ZjU0NjEtNTg4Mi00MDQ4LTllODYtYTg0ZjM5MmQxNzc0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "62860b19-6d5b-4451-a3ef-1a55e1740378" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "70c4c804-29b1-422e-922a-9a2c48c8eb25" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143656Z:70c4c804-29b1-422e-922a-9a2c48c8eb25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:36:56 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f76f5461-5882-4048-9e86-a84f392d1774\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:34:56.027Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f76f5461-5882-4048-9e86-a84f392d1774?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZjc2ZjU0NjEtNTg4Mi00MDQ4LTllODYtYTg0ZjM5MmQxNzc0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "7794d7a2-a36e-4b67-bf66-bba35b466346" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "6ae1f50a-d570-4f6d-ab9e-3db61d816d13" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143756Z:6ae1f50a-d570-4f6d-ab9e-3db61d816d13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:37:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f76f5461-5882-4048-9e86-a84f392d1774\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-20T14:34:56.027Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NxbGNsLXZjY3J1ZHRlc3RzLWRvdG5ldHNkazE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64de83e4-73df-4781-87e2-3e42b4a1a625" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "781b75a6-ea6f-4949-9270-8c2b95b8363b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143757Z:781b75a6-ea6f-4949-9270-8c2b95b8363b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:37:56 GMT" + ], + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-vccrudtests-dotnetsdk1.98504e273353.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"98504e273353\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1\",\r\n \"name\": \"sqlcl-vccrudtests-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/virtualClusters?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3ZpcnR1YWxDbHVzdGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea11b759-1f62-4863-befc-18ba72f093d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "a9fb43f1-7d30-4d06-8960-02c3414a6742", + "2974614b-d9e9-451b-9565-37fb94582d00", + "ce98ca98-daf9-4b8f-be20-89e55e0744f7", + "bf5fdf98-7a97-440a-9169-981d5ef91b0e", + "b3b65f0d-a30e-467d-b15d-d9401bbf3e04", + "5c6dde04-878f-432c-9ea8-bb2b07a6a5dc", + "b8552729-11dd-4d2e-b6f0-8545d8e55685", + "0fd9575b-1afd-4fb6-bd81-dabf076edef8", + "12629d78-71df-413b-ac97-3dfcb4da3d45", + "a17bfcc4-0660-4719-88f3-eece3e815690", + "da56afae-6609-4e16-a53f-7b8631ab3500", + "d6bd8ef5-a9ed-46d0-948a-ff953e02c97c", + "5c20ddbb-ce77-4529-af62-a9fb921b1905", + "d0b8c911-2812-4e5b-acc3-5c7a07ca49ee", + "2d3cce16-c926-47c9-92ca-a021f751f01d", + "99a2309b-9157-4462-9aaa-741a902297f3", + "c232ead6-9b57-4144-aa9e-e5f55cac8047", + "a947c1b1-10f0-426b-8437-080a07e1dfe3", + "67c4ed86-5adb-4e0a-8115-4169bc29e914", + "b763cf3d-3a9d-426e-96cf-4634de850933", + "b4a40b6b-c450-496d-9493-6a79895e708f", + "d2fb5657-9d38-4b9b-bf24-e9cf20c76ad1", + "55fa1cce-9847-4536-8a07-37bcd59ac35a", + "c1ed0a0b-366b-41cc-a1f0-039251f7b3fd", + "8d1b95e2-09f5-4b20-a618-adb33f7ceac0", + "0edd5ac8-cf44-424c-8d59-52edd3d67b9d", + "d29659cd-e1ea-451c-bea2-b404519af1af", + "878fba0e-d119-4871-a8e1-bb226222dd18", + "6f3ae0e9-b9c5-46c3-b46c-277e98229b24", + "a5f99aa7-7760-4e3d-a107-f127d53d01aa", + "aa6449cf-f307-477e-a364-b5b01ecb97dc", + "198f360c-c8be-419b-834a-14ca544fba51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "0180fcc4-1217-421d-b0ed-e4b0db48ed9d" + ], + "x-ms-correlation-request-id": [ + "0180fcc4-1217-421d-b0ed-e4b0db48ed9d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T143921Z:0180fcc4-1217-421d-b0ed-e4b0db48ed9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:39:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "54207" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuea1/providers/Microsoft.Network/virtualNetworks/ModelVnetAuea1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuea1/providers/Microsoft.Sql/managedInstances/modelmigp1auea1\"\r\n ]\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuea1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srki_test/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground_AES/subnets/MISubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srki_test/providers/Microsoft.Sql/managedInstances/docusign-test\"\r\n ]\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srki_test/providers/Microsoft.Sql/virtualClusters/VirtualClusterMISubnet\",\r\n \"name\": \"VirtualClusterMISubnet\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuse1/providers/Microsoft.Network/virtualNetworks/ModelVnetAuse1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuse1/providers/Microsoft.Sql/managedInstances/modelmigp1ause1\"\r\n ]\r\n },\r\n \"location\": \"australiasoutheast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuse1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingBrso1/providers/Microsoft.Network/virtualNetworks/ModelVnetBrso1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingBrso1/providers/Microsoft.Sql/managedInstances/modelmigp1brso1\"\r\n ]\r\n },\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingBrso1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jimoharg0/providers/Microsoft.Network/virtualNetworks/jimohabzvnet00/subnets/misubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jimoharg0/providers/Microsoft.Sql/managedInstances/jimohagpmibz00\"\r\n ]\r\n },\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jimoharg0/providers/Microsoft.Sql/virtualClusters/VirtualCluster44a2465f-8072-4903-b32c-08ac7570b4f7\",\r\n \"name\": \"VirtualCluster44a2465f-8072-4903-b32c-08ac7570b4f7\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Network/virtualNetworks/GmPlusVnet/subnets/BugBashSubnet3\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashnewprovisioning3\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashnewprovisioning4\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbasholdprovisioning1\"\r\n ]\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/virtualClusters/VirtualCluster62f13be5-7317-4664-bd40-dfa64701f5bc\",\r\n \"name\": \"VirtualCluster62f13be5-7317-4664-bd40-dfa64701f5bc\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Network/virtualNetworks/GmPlusVnet/subnets/BugBashSubnet2\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashradic7\"\r\n ]\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/virtualClusters/VirtualClusterf659acca-0039-4b21-a7eb-b4984cc10431\",\r\n \"name\": \"VirtualClusterf659acca-0039-4b21-a7eb-b4984cc10431\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Network/virtualNetworks/GmPlusVnet/subnets/BugBashSubnet2\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashradic5\"\r\n ]\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/virtualClusters/VirtualClusterd4d799b7-03d6-429c-9eac-eac931d1d0c7\",\r\n \"name\": \"VirtualClusterd4d799b7-03d6-429c-9eac-eac931d1d0c7\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaCe1/providers/Microsoft.Network/virtualNetworks/ModelVnetCaCe1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaCe1/providers/Microsoft.Sql/managedInstances/modelmigp1cace1\"\r\n ]\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaCe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Network/virtualNetworks/GmPlusVnet/subnets/BugBashSubnet2\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashradic3\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashradic2\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/bugbashradic4\"\r\n ]\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/virtualClusters/VirtualCluster5a652569-ada6-457a-a085-b1782b8cccab\",\r\n \"name\": \"VirtualCluster5a652569-ada6-457a-a085-b1782b8cccab\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/instancePools/providers/Microsoft.Network/virtualNetworks/vnet-jp-instance/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/instancePools/providers/Microsoft.Sql/virtualClusters/VirtualClusterb94d5eff-146c-4cb4-a763-cb0aa4b03f78\",\r\n \"name\": \"VirtualClusterb94d5eff-146c-4cb4-a763-cb0aa4b03f78\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaEa1/providers/Microsoft.Network/virtualNetworks/ModelVnetCaEa1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaEa1/providers/Microsoft.Sql/managedInstances/modelmigp1caea1\"\r\n ]\r\n },\r\n \"location\": \"canadaeast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCaEa1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInCe1/providers/Microsoft.Network/virtualNetworks/ModelVnetInCe1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInCe1/providers/Microsoft.Sql/managedInstances/modelmigp1ince1\"\r\n ]\r\n },\r\n \"location\": \"centralindia\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInCe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCus1/providers/Microsoft.Network/virtualNetworks/ModelVnetCus1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCus1/providers/Microsoft.Sql/managedInstances/modelmigp1cus1\"\r\n ]\r\n },\r\n \"location\": \"centralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingCus1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEas1/providers/Microsoft.Network/virtualNetworks/ModelVnetEas1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEas1/providers/Microsoft.Sql/managedInstances/modelmigp1eas1\"\r\n ]\r\n },\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEas1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Network/virtualNetworks/myVnetEus/subnets/mi\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Sql/managedInstances/brcl-eus\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Sql/virtualClusters/VirtualClusteraf66c24b-c42c-4150-a4eb-26cb102382cb\",\r\n \"name\": \"VirtualClusteraf66c24b-c42c-4150-a4eb-26cb102382cb\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-570/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-3386/subnets/MISubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-570/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-9250\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-570/providers/Microsoft.Sql/virtualClusters/VirtualClustere357f83c-5b4a-4cf8-8cd7-90f746550e41\",\r\n \"name\": \"VirtualClustere357f83c-5b4a-4cf8-8cd7-90f746550e41\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/geodrEastUSvnet/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/misub\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srki_test/providers/Microsoft.Sql/managedInstances/clustest\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClustermisub\",\r\n \"name\": \"VirtualClustermisub\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/cp_ref/providers/Microsoft.Network/virtualNetworks/cp_vnet/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/cp_ref/providers/Microsoft.Sql/managedInstances/cert-test3\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/cp_ref/providers/Microsoft.Sql/virtualClusters/VirtualClusterManagedInstance\",\r\n \"name\": \"VirtualClusterManagedInstance\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Network/virtualNetworks/myVnetEus2/subnets/mi\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Sql/managedInstances/brcl-eus2\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/brrg/providers/Microsoft.Sql/virtualClusters/VirtualClusteraa9ec9df-6178-4668-bc2a-75998e3af984\",\r\n \"name\": \"VirtualClusteraa9ec9df-6178-4668-bc2a-75998e3af984\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/MISubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-2085/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterMISubnet\",\r\n \"name\": \"VirtualClusterMISubnet\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"name\": \"VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEus2/providers/Microsoft.Network/virtualNetworks/ModelVnetEus2/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEus2/providers/Microsoft.Sql/managedInstances/modelmigp1eus2\"\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingEus2/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srbozovi_test/providers/Microsoft.Network/virtualNetworks/vnet-sqlmisetest/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srbozovi_test/providers/Microsoft.Sql/managedInstances/sqlmisetest\"\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srbozovi_test/providers/Microsoft.Sql/virtualClusters/VirtualClusterd4795238-1b8e-45d3-97eb-e641e47152f5\",\r\n \"name\": \"VirtualClusterd4795238-1b8e-45d3-97eb-e641e47152f5\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingFrCe1/providers/Microsoft.Network/virtualNetworks/ModelVnetFrCe1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingFrCe1/providers/Microsoft.Sql/managedInstances/modelmigp1frce1\"\r\n ]\r\n },\r\n \"location\": \"francecentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingFrCe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJaea1/providers/Microsoft.Network/virtualNetworks/ModelVnetJaea1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJaea1/providers/Microsoft.Sql/managedInstances/modelmigp1jaea1\"\r\n ]\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJaea1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6687/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-8475/subnets/MISubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6687/providers/Microsoft.Sql/managedInstances/crud-tests-sqlcrudtest-9166\"\r\n ]\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6687/providers/Microsoft.Sql/virtualClusters/VirtualCluster7d135fd0-52d1-4c24-871b-ae18f0e84620\",\r\n \"name\": \"VirtualCluster7d135fd0-52d1-4c24-871b-ae18f0e84620\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJawe1/providers/Microsoft.Network/virtualNetworks/ModelVnetJawe1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJawe1/providers/Microsoft.Sql/managedInstances/modelmigp1jawe1\"\r\n ]\r\n },\r\n \"location\": \"japanwest\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingJawe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoCe1/providers/Microsoft.Network/virtualNetworks/ModelVnetKoCe1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoCe1/providers/Microsoft.Sql/managedInstances/modelmigp1koce1\"\r\n ]\r\n },\r\n \"location\": \"koreacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoCe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/georestore-rg/providers/Microsoft.Network/virtualNetworks/vnet-targetinstance/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/georestore-rg/providers/Microsoft.Sql/managedInstances/targetinstance\"\r\n ]\r\n },\r\n \"location\": \"koreasouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/georestore-rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterdf40a11f-c07c-4050-8097-aa406fff33cb\",\r\n \"name\": \"VirtualClusterdf40a11f-c07c-4050-8097-aa406fff33cb\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoSo1/providers/Microsoft.Network/virtualNetworks/ModelVnetKoSo1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoSo1/providers/Microsoft.Sql/managedInstances/modelmigp1koso1\"\r\n ]\r\n },\r\n \"location\": \"koreasouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingKoSo1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNCus1/providers/Microsoft.Network/virtualNetworks/ModelVnetNCus1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNCus1/providers/Microsoft.Sql/managedInstances/modelmigp1ncus1\"\r\n ]\r\n },\r\n \"location\": \"northcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNCus1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNeu1/providers/Microsoft.Network/virtualNetworks/ModelVnetNeu1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNeu1/providers/Microsoft.Sql/managedInstances/modelmigp1neu1\"\r\n ]\r\n },\r\n \"location\": \"northeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingNeu1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/dvTest/providers/Microsoft.Network/virtualNetworks/dvVnetPrivate/subnets/MIPrivate\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"northeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/dvTest/providers/Microsoft.Sql/virtualClusters/VirtualClustera8abcb9b-5160-455d-9ce9-1757ee444a7b\",\r\n \"name\": \"VirtualClustera8abcb9b-5160-455d-9ce9-1757ee444a7b\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mabender-southafricanorth-rg/providers/Microsoft.Network/virtualNetworks/mabender-southafricanorth-vnet/subnets/mabender-southafricanorth-subnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"southafricanorth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mabender-southafricanorth-rg/providers/Microsoft.Sql/virtualClusters/VirtualCluster15b8a23c-aeaf-46b1-9fd0-00ceebbabafe\",\r\n \"name\": \"VirtualCluster15b8a23c-aeaf-46b1-9fd0-00ceebbabafe\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSCus1/providers/Microsoft.Network/virtualNetworks/ModelVnetSCus1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSCus1/providers/Microsoft.Sql/managedInstances/modelmigp1scus1\"\r\n ]\r\n },\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSCus1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInSo1/providers/Microsoft.Network/virtualNetworks/ModelVnetInSo1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInSo1/providers/Microsoft.Sql/managedInstances/modelmigp1inso1\"\r\n ]\r\n },\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInSo1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSEas1/providers/Microsoft.Network/virtualNetworks/ModelVnetSEas1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSEas1/providers/Microsoft.Sql/managedInstances/modelmigp1seas1\"\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingSEas1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkSo1/providers/Microsoft.Network/virtualNetworks/ModelVnetUkSo1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkSo1/providers/Microsoft.Sql/managedInstances/modelmigp1ukso1\"\r\n ]\r\n },\r\n \"location\": \"uksouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkSo1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkWe1/providers/Microsoft.Network/virtualNetworks/ModelVnetUkWe1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkWe1/providers/Microsoft.Sql/managedInstances/modelmigp1ukwe1\"\r\n ]\r\n },\r\n \"location\": \"ukwest\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingUkWe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jimoharg0/providers/Microsoft.Network/virtualNetworks/jimohaVNet0/subnets/misubnet0\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jimoharg0/providers/Microsoft.Sql/virtualClusters/VirtualCluster8af8c4d9-7c4b-45da-8b34-1456ac1cb678\",\r\n \"name\": \"VirtualCluster8af8c4d9-7c4b-45da-8b34-1456ac1cb678\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Network/virtualNetworks/myVnetWcus/subnets/mi\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/managedInstances/brcl-wcus\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterdc20dbe1-8da6-4681-8bc2-4cedbb77a82a\",\r\n \"name\": \"VirtualClusterdc20dbe1-8da6-4681-8bc2-4cedbb77a82a\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/CMWTestResourceGroup/providers/Microsoft.Network/virtualNetworks/VirtualNetworkCMW/subnets/mi\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/CMWTestResourceGroup/providers/Microsoft.Sql/managedInstances/stdjordjcmw\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/CMWTestResourceGroup/providers/Microsoft.Sql/virtualClusters/VirtualCluster67bdfb54-8e9a-46a5-8ff2-3161f8edd5a5\",\r\n \"name\": \"VirtualCluster67bdfb54-8e9a-46a5-8ff2-3161f8edd5a5\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet-ziwatest124/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/testrg/providers/Microsoft.Sql/virtualClusters/VirtualClusterd2ea9c95-d9ac-482c-96d2-d539fc6de2a9\",\r\n \"name\": \"VirtualClusterd2ea9c95-d9ac-482c-96d2-d539fc6de2a9\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mi-wcus-demo-rg/providers/Microsoft.Network/virtualNetworks/mi-wcus-vnet/subnets/mi-subnet-managed-instances\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mi-wcus-demo-rg/providers/Microsoft.Sql/managedInstances/ssrstest2\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mi-wcus-demo-rg/providers/Microsoft.Sql/managedInstances/milevamaric-pilot-gp-00\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mi-wcus-demo-rg/providers/Microsoft.Sql/virtualClusters/VirtualClustermi-subnet-managed-instances\",\r\n \"name\": \"VirtualClustermi-subnet-managed-instances\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/svetst/providers/Microsoft.Network/virtualNetworks/vnet-testsvetst20190128/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/svetst/providers/Microsoft.Sql/managedInstances/testsvetst20190128\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/svetst/providers/Microsoft.Sql/virtualClusters/VirtualClusterfd650eb8-2d75-4152-8f6a-5c5586a52e85\",\r\n \"name\": \"VirtualClusterfd650eb8-2d75-4152-8f6a-5c5586a52e85\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rgRestrictedadmintestmi/providers/Microsoft.Network/virtualNetworks/vnet-restrictedadmintestmi2/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rgRestrictedadmintestmi/providers/Microsoft.Sql/managedInstances/restrictedadmintestmi2\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rgRestrictedadmintestmi/providers/Microsoft.Sql/virtualClusters/VirtualClustere72c76f6-b499-41bb-916a-8b904861afd3\",\r\n \"name\": \"VirtualClustere72c76f6-b499-41bb-916a-8b904861afd3\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWCus1/providers/Microsoft.Network/virtualNetworks/ModelVnetWCus1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWCus1/providers/Microsoft.Sql/managedInstances/modelmigp1wcus1\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWCus1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DATrain_Validation_Feb19/providers/Microsoft.Network/virtualNetworks/vnet-datrain-validation-feb2019/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DATrain_Validation_Feb19/providers/Microsoft.Sql/managedInstances/datrain-validation-feb20191\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DATrain_Validation_Feb19/providers/Microsoft.Sql/managedInstances/datrain-validation-feb2019\"\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DATrain_Validation_Feb19/providers/Microsoft.Sql/virtualClusters/VirtualCluster0809980a-1c31-41a3-85c9-26deee112f3c\",\r\n \"name\": \"VirtualCluster0809980a-1c31-41a3-85c9-26deee112f3c\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/Cool\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/cl_one/providers/Microsoft.Sql/virtualClusters/VirtualCluster3c3c449b-b23b-4229-bc1d-d729c43e1caf\",\r\n \"name\": \"VirtualCluster3c3c449b-b23b-4229-bc1d-d729c43e1caf\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Network/virtualNetworks/clstresstesting_weu_vnet/subnets/ManagedInstances\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/miradutestbc80\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterb0e3b26d-4c15-41ca-8284-f910e5d5f21a\",\r\n \"name\": \"VirtualClusterb0e3b26d-4c15-41ca-8284-f910e5d5f21a\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/milje/providers/Microsoft.Network/virtualNetworks/vnet-milans-cltest/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/milans_testrg/providers/Microsoft.Sql/managedInstances/milans-cltest\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/milje/providers/Microsoft.Sql/virtualClusters/VirtualClusterde280c27-ebbf-4874-aa5c-7241fe6d32c4\",\r\n \"name\": \"VirtualClusterde280c27-ebbf-4874-aa5c-7241fe6d32c4\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Network/virtualNetworks/vnet-clperftesting-gen5-bc24-loose40-weu-01/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc24-loose40-weu-01\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/virtualClusters/VirtualCluster5eb395cc-75a3-46da-a97d-87222efc14f7\",\r\n \"name\": \"VirtualCluster5eb395cc-75a3-46da-a97d-87222efc14f7\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Network/virtualNetworks/clperftesting_weu_vnet/subnets/ManagedInstances\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc32-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc8-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp80-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen5-gp80-weu-001\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc40-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen5-gp8-weu-001\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc24-weu-02\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp32-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc24-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc40-weu-02\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen5-gp16-weu-001\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp40-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp24-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp8-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc64-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp16-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc80-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp8-weu-02\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc16-weu-01\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-gp64-weu-01\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterManagedInstances\",\r\n \"name\": \"VirtualClusterManagedInstances\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWeu1/providers/Microsoft.Network/virtualNetworks/ModelVnetWeu1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWeu1/providers/Microsoft.Sql/managedInstances/modelmigp1weu1\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWeu1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Network/virtualNetworks/clstresstesting_weu_vnet/subnets/ManagedInstances\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen4-gp24-weu-001\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen4-gp8-weu-001\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clstresstesing-gen4-gp16-weu-001\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/stresstesting_weu_rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterManagedInstances\",\r\n \"name\": \"VirtualClusterManagedInstances\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/resourcemoveold/providers/Microsoft.Network/virtualNetworks/resourcemovetest/subnets/injectionSubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/resourcemoveold/providers/Microsoft.Sql/managedInstances/resourcegroupmovetest-dejann\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/resourcemoveold/providers/Microsoft.Sql/virtualClusters/VirtualCluster0d741e43-6b79-42bb-825b-4c1251838f23\",\r\n \"name\": \"VirtualCluster0d741e43-6b79-42bb-825b-4c1251838f23\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/milje/providers/Microsoft.Network/virtualNetworks/vnet-milans-cltest/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/milje/providers/Microsoft.Sql/virtualClusters/VirtualCluster755a55b7-b93c-48c2-9196-aa5c5ce934a7\",\r\n \"name\": \"VirtualCluster755a55b7-b93c-48c2-9196-aa5c5ce934a7\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Network/virtualNetworks/clperftesting_weu_vnet/subnets/ManagedInstances\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc40-loose80-weu-03\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc24-loose40-weu-03\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc8-loose24-weu-04\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/managedInstances/clperftesting-gen5-bc32loose64-weu-04\"\r\n ]\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/clperftesting_weu_rg/providers/Microsoft.Sql/virtualClusters/VirtualClustera242d974-cf43-41b1-8d4d-9218685debcd\",\r\n \"name\": \"VirtualClustera242d974-cf43-41b1-8d4d-9218685debcd\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInWe1/providers/Microsoft.Network/virtualNetworks/ModelVnetInWe1/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInWe1/providers/Microsoft.Sql/managedInstances/modelmigp1inwe1\"\r\n ]\r\n },\r\n \"location\": \"westindia\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingInWe1/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ReadyWorkshop/providers/Microsoft.Network/virtualNetworks/VNET_Workshop_5/subnets/MIsubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ReadyWorkshop/providers/Microsoft.Sql/managedInstances/mi-workshop5-1\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ReadyWorkshop/providers/Microsoft.Sql/managedInstances/mi-workshop5-2\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ReadyWorkshop/providers/Microsoft.Sql/virtualClusters/VirtualClusterMIsubnet\",\r\n \"name\": \"VirtualClusterMIsubnet\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Network/virtualNetworks/vnet-fernoreplwus/subnets/MISubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow1dist\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow1sub\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow1pub2\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/virtualClusters/VirtualCluster136b228e-7787-417e-a95a-6f9223fede72\",\r\n \"name\": \"VirtualCluster136b228e-7787-417e-a95a-6f9223fede72\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/geodrWestUSvnet2/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-02\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Network/virtualNetworks/vnet-testbrinstance/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/managedInstances/testbrinstance\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/virtualClusters/VirtualCluster7c93e73c-81c7-4d6f-8901-d82c0c33e81f\",\r\n \"name\": \"VirtualCluster7c93e73c-81c7-4d6f-8901-d82c0c33e81f\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Network/virtualNetworks/vnet-restorerunnermanagedserverwus/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/managedInstances/restorerunnermanagedserverwus\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/restore-rg/providers/Microsoft.Sql/virtualClusters/VirtualClusterd2d552c1-9d2b-47e9-a172-103dd2a91db5\",\r\n \"name\": \"VirtualClusterd2d552c1-9d2b-47e9-a172-103dd2a91db5\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/MIEvacuationTest/providers/Microsoft.Network/virtualNetworks/vnet-managedinstanceevacuate/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/MIEvacuationTest/providers/Microsoft.Sql/managedInstances/mirestored1282019\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/MIEvacuationTest/providers/Microsoft.Sql/managedInstances/managedinstanceevacuate\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/MIEvacuationTest/providers/Microsoft.Sql/managedInstances/mirestored1222019\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/MIEvacuationTest/providers/Microsoft.Sql/virtualClusters/VirtualCluster4cca41ac-09c6-4189-8158-aa49adf52e00\",\r\n \"name\": \"VirtualCluster4cca41ac-09c6-4189-8158-aa49adf52e00\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Network/virtualNetworks/vnet-fernoreplwus2/subnets/MISubnet\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow1pub3\"\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/virtualClusters/VirtualClusteraf15ab6a-75e4-43bf-b202-7263acb6d633\",\r\n \"name\": \"VirtualClusteraf15ab6a-75e4-43bf-b202-7263acb6d633\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/vnet-crud-tests-001/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/crud-tests-001\"\r\n ]\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterManagedInstance\",\r\n \"name\": \"VirtualClusterManagedInstance\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/SharePoint2019MITest/providers/Microsoft.Network/virtualNetworks/MyNewVNet/subnets/ManagedInstances\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/SharePoint2016MITest/providers/Microsoft.Sql/managedInstances/sqlmi2\"\r\n ]\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/SharePoint2019MITest/providers/Microsoft.Sql/virtualClusters/VirtualClusterae011f35-757b-4528-a86b-1ab23442d1cd\",\r\n \"name\": \"VirtualClusterae011f35-757b-4528-a86b-1ab23442d1cd\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWus2/providers/Microsoft.Network/virtualNetworks/ModelVnetWus2/subnets/default\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWus2/providers/Microsoft.Sql/managedInstances/modelmigp1wus2\"\r\n ]\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingWus2/providers/Microsoft.Sql/virtualClusters/VirtualClusterdefault\",\r\n \"name\": \"VirtualClusterdefault\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Network/virtualNetworks/vnet-fernorepl/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow2dist\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/managedInstances/fernow2pub2\"\r\n ]\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/fernotest/providers/Microsoft.Sql/virtualClusters/VirtualClustercfb2e29b-1cc2-4a24-856d-e7507be78857\",\r\n \"name\": \"VirtualClustercfb2e29b-1cc2-4a24-856d-e7507be78857\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuce1/providers/Microsoft.Network/virtualNetworks/ModelVnetAuce1/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"australiacentral\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuce1/providers/Microsoft.Sql/virtualClusters/VirtualCluster674f2a58-b5ae-49b1-b645-c07f99b447a3\",\r\n \"name\": \"VirtualCluster674f2a58-b5ae-49b1-b645-c07f99b447a3\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuce2/providers/Microsoft.Network/virtualNetworks/ModelVnetAuce2/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"australiacentral2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/ModelRingAuce2/providers/Microsoft.Sql/virtualClusters/VirtualClusterc77dc581-772f-452d-bc5e-4b8ed50f0c26\",\r\n \"name\": \"VirtualClusterc77dc581-772f-452d-bc5e-4b8ed50f0c26\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jovancvnettest/providers/Microsoft.Network/virtualNetworks/jcSwiftVnet/subnets/MSFT-MI\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jovancvnettest/providers/Microsoft.Sql/managedInstances/sqlswiftmi\"\r\n ]\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/jovancvnettest/providers/Microsoft.Sql/virtualClusters/VirtualClusterfa56d76b-bb72-4a62-bbd1-7e7ff641d6cc\",\r\n \"name\": \"VirtualClusterfa56d76b-bb72-4a62-bbd1-7e7ff641d6cc\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Network/virtualNetworks/GmPlusVnetEus2Euap/subnets/default\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/gmplus-gen5-eus2euap-validation\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/radicdaverification\",\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/managedInstances/gmplus-gen5-eus2euap-00\"\r\n ]\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/GmPlusRG/providers/Microsoft.Sql/virtualClusters/VirtualClusterd8e8baca-9496-488c-8b6a-073ba9ab0a63\",\r\n \"name\": \"VirtualClusterd8e8baca-9496-488c-8b6a-073ba9ab0a63\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mabender-francesouth-rg/providers/Microsoft.Network/virtualNetworks/vnet-mabender-francesouth-mi/subnets/ManagedInstance\",\r\n \"family\": \"Gen5\",\r\n \"childResources\": []\r\n },\r\n \"location\": \"francesouth\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/mabender-francesouth-rg/providers/Microsoft.Sql/virtualClusters/VirtualClustercb29810e-849d-4442-add5-dd70314a4d70\",\r\n \"name\": \"VirtualClustercb29810e-849d-4442-add5-dd70314a4d70\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC92aXJ0dWFsQ2x1c3RlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f6f2ce3-90e1-4259-845f-1115e05164ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "9486f26f-58b8-42fa-864b-b6a10a9feabb", + "b4337e34-9a32-4631-96c7-5fa79143e5bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "384ad3ca-ef42-4f0b-a94f-6eeaf3fe5983" + ], + "x-ms-correlation-request-id": [ + "384ad3ca-ef42-4f0b-a94f-6eeaf3fe5983" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144113Z:384ad3ca-ef42-4f0b-a94f-6eeaf3fe5983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:41:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2553" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/misub\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/srki_test/providers/Microsoft.Sql/managedInstances/clustest\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClustermisub\",\r\n \"name\": \"VirtualClustermisub\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/MISubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-2085/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterMISubnet\",\r\n \"name\": \"VirtualClusterMISubnet\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"name\": \"VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n },\r\n {\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/vnet-crud-tests-001/subnets/ManagedInstance\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/crud-tests-001\"\r\n ]\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterManagedInstance\",\r\n \"name\": \"VirtualClusterManagedInstance\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC92aXJ0dWFsQ2x1c3RlcnMvVmlydHVhbENsdXN0ZXJjMTY1NDRiMy1kNjhmLTQ2ZDYtYWRkMS1hY2I3YmM5ZTU4N2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8f797e0-895d-492d-91f8-05ff77bc7ad0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d1366d69-0dde-420c-b2fe-ea6b1573e038" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "4230d05d-3692-4318-bca1-3d002471a366" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144129Z:4230d05d-3692-4318-bca1-3d002471a366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:41:28 GMT" + ], + "Content-Length": [ + "689" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet\",\r\n \"family\": \"Gen4\",\r\n \"childResources\": [\r\n \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1\"\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"name\": \"VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c\",\r\n \"type\": \"Microsoft.Sql/virtualClusters\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC92aXJ0dWFsQ2x1c3RlcnMvVmlydHVhbENsdXN0ZXJjMTY1NDRiMy1kNjhmLTQ2ZDYtYWRkMS1hY2I3YmM5ZTU4N2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e400ddc-1df1-4d3c-afeb-40ba137139b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c5f74c20-f10f-4a07-bbd7-46516bb44f1b" + ], + "x-ms-correlation-request-id": [ + "c5f74c20-f10f-4a07-bbd7-46516bb44f1b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154905Z:c5f74c20-f10f-4a07-bbd7-46516bb44f1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:49:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "199" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c' under resource group 'RG_MIPlayground' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/managedInstances/sqlcl-vccrudtests-dotnetsdk1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NxbGNsLXZjY3J1ZHRlc3RzLWRvdG5ldHNkazE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bac6e8b2-f685-41bc-b0cd-bccfe9ce51e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceOperationResults/f908da96-a770-4ad0-b5c8-10545ba6eacb?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f908da96-a770-4ad0-b5c8-10545ba6eacb?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "f908da96-a770-4ad0-b5c8-10545ba6eacb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d498bc37-55a7-4876-a73c-90b8727bbc81" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144155Z:d498bc37-55a7-4876-a73c-90b8727bbc81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:41:54 GMT" + ], + "Content-Length": [ + "72" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2019-03-20T14:41:55.007Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/f908da96-a770-4ad0-b5c8-10545ba6eacb?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZjkwOGRhOTYtYTc3MC00YWQwLWI1YzgtMTA1NDViYTZlYWNiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "16c53e18-bfbd-42ff-932c-4d861c214730" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "3dc20515-e0b5-45cd-aec7-1e0c6a0df9ee" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144210Z:3dc20515-e0b5-45cd-aec7-1e0c6a0df9ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:42:09 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f908da96-a770-4ad0-b5c8-10545ba6eacb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-20T14:41:55.007Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/locations/eastus/managedInstanceOperationResults/f908da96-a770-4ad0-b5c8-10545ba6eacb?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZU9wZXJhdGlvblJlc3VsdHMvZjkwOGRhOTYtYTc3MC00YWQwLWI1YzgtMTA1NDViYTZlYWNiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd910761-c19c-441e-beb3-e5aebb531e4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "326f33ae-ac61-484b-b620-0adec0373d84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144210Z:326f33ae-ac61-484b-b620-0adec0373d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:42:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Sql/virtualClusters/VirtualClusterc16544b3-d68f-46d6-add1-acb7bc9e587c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL1JHX01JUGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC92aXJ0dWFsQ2x1c3RlcnMvVmlydHVhbENsdXN0ZXJjMTY1NDRiMy1kNjhmLTQ2ZDYtYWRkMS1hY2I3YmM5ZTU4N2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91795276-f925-453f-8d92-7c0962ed9846" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterOperationResults/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "088bb8dc-ea14-4494-86c5-cd973948693a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "1aa8ed84-227d-49d4-b4e5-350069552d54" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144323Z:1aa8ed84-227d-49d4-b4e5-350069552d54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:43:23 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropVirtualCluster\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1edad65d-0a29-46b3-9442-17be1dd4be87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "22d14a8e-b391-4dde-9fa8-a8ba5eb864cc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144339Z:22d14a8e-b391-4dde-9fa8-a8ba5eb864cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:43:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "648e846a-f0a2-4195-ba68-71b454eba215" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "c370f0e6-b9c7-4cb1-8318-1ea45f6944b0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144354Z:c370f0e6-b9c7-4cb1-8318-1ea45f6944b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:43:54 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "af882fb9-5ab9-486b-b7ec-fcc03cd4fa7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "046a02b3-092b-4e29-b633-d5e4beba46ff" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144410Z:046a02b3-092b-4e29-b633-d5e4beba46ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:44:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "044450f6-e294-4ba7-bc91-3dfdcc86f274" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "6b104ba3-3951-45f4-b44e-a74ef17fefcb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144425Z:6b104ba3-3951-45f4-b44e-a74ef17fefcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:44:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b93b49f7-0534-4ac5-80df-491d115c230e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "158bad81-6935-4c57-a419-65f905afa733" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144440Z:158bad81-6935-4c57-a419-65f905afa733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:44:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "dab328ae-c8b8-4d39-9507-d6a0e6e719c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "4ba70016-d3ea-427f-9aa7-2f07c78a9de8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144455Z:4ba70016-d3ea-427f-9aa7-2f07c78a9de8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:44:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fcfc8e0b-e9cb-45bc-972f-4686ecf4ee30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "9ec388d8-e852-4153-837a-defc76abebe5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144511Z:9ec388d8-e852-4153-837a-defc76abebe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:45:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2458e70a-2c23-458c-8246-e37a8e1916e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "a16eb613-c5ac-4ded-92c3-5cd27176f75d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144526Z:a16eb613-c5ac-4ded-92c3-5cd27176f75d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:45:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0c2a3a4f-91a0-45ea-8cdd-c79211077c2e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "c71431f0-8707-4583-b7f0-e06ec10981c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144541Z:c71431f0-8707-4583-b7f0-e06ec10981c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:45:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5d7127c7-9026-448f-9cf4-7f4a127ef59d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "0908f9a1-6a41-4a07-8d97-15d0cca36325" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144556Z:0908f9a1-6a41-4a07-8d97-15d0cca36325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:45:56 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "561e2404-bb13-4db1-ad92-28a856d68ca1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "9164346f-e509-4c36-885a-961d735ead0c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144612Z:9164346f-e509-4c36-885a-961d735ead0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:46:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b5eca03d-43f8-4487-8047-9cac2775cd4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "7152bded-6d50-46e2-bb9a-15c74f0d23f5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144627Z:7152bded-6d50-46e2-bb9a-15c74f0d23f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:46:26 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4d5ac4f1-3916-4c5a-9b9f-163bd59d30c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "504a8d17-63c9-4591-9c2a-9826c8ee1ac7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144643Z:504a8d17-63c9-4591-9c2a-9826c8ee1ac7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:46:42 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fe0cd07c-273b-4747-b746-d31ec5619b17" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "f5b4fb82-bff6-400b-9b4a-28d640b69638" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144658Z:f5b4fb82-bff6-400b-9b4a-28d640b69638" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:46:57 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "deb1429b-1648-47ef-89fe-893df86c0cea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "8666d504-0955-4f52-86fd-bb0474fa5734" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144713Z:8666d504-0955-4f52-86fd-bb0474fa5734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:47:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "21430440-8ece-4b2e-93ed-922f5f6e5c0d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "f8f3f57c-abba-44fa-a34a-b01b42b4c1a1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144728Z:f8f3f57c-abba-44fa-a34a-b01b42b4c1a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:47:28 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c5ac89b3-4d48-46d1-9c64-fcf38219cf21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a2775908-769d-4eca-8241-0afe2fae276b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144743Z:a2775908-769d-4eca-8241-0afe2fae276b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:47:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "21d82f60-567e-42ce-8d32-94f5ea583778" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "fb228b29-1e98-491b-910f-f0c862c93a10" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144759Z:fb228b29-1e98-491b-910f-f0c862c93a10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:47:58 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c097d8f0-08eb-42a6-ae46-5603d475710c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "fa094cab-3194-4956-82bb-d5895297a035" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144814Z:fa094cab-3194-4956-82bb-d5895297a035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:48:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fedd7753-97a8-4c14-8fdd-1ef32eb06539" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "a718b25b-b680-49a7-9d98-cf8281a6b5f7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144829Z:a718b25b-b680-49a7-9d98-cf8281a6b5f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:48:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "07e65fb9-e0d6-4c6b-8477-caf4abb4fdc9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "15a1d3b2-8519-4ae8-af42-ed2de0300037" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144844Z:15a1d3b2-8519-4ae8-af42-ed2de0300037" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:48:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "93b10474-4fd0-47dd-b082-daa5cd283efb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "e0069f9b-3d84-4d28-931b-3de0a4ee8ec7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144900Z:e0069f9b-3d84-4d28-931b-3de0a4ee8ec7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:48:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "05bb8d58-27b9-4c12-b3e8-dfe568c2f000" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "496f5744-b9f4-4284-9741-a8814bd61db5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144915Z:496f5744-b9f4-4284-9741-a8814bd61db5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:49:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "bfd4696b-8f8a-4e00-9ae1-cf95ae634e59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "48029f93-bddd-4521-af63-4a802f6f1e05" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144930Z:48029f93-bddd-4521-af63-4a802f6f1e05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:49:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c8f6805e-ca05-4285-af48-c66a6709fa7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "225ab485-40ed-41b1-8b54-5ef6577cad66" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T144945Z:225ab485-40ed-41b1-8b54-5ef6577cad66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:49:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ba7c7b00-eee6-4770-9509-b48f09782826" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "7dc16a14-b9db-4332-b96f-8e406f3e48ca" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145001Z:7dc16a14-b9db-4332-b96f-8e406f3e48ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:50:00 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "514929ca-e2e2-4b41-b598-ecd283411578" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "f5cb2c82-508b-4260-96e2-df26d2b8cb75" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145016Z:f5cb2c82-508b-4260-96e2-df26d2b8cb75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:50:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1fba0843-8883-48de-a4c9-2ddc0cc98b11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "e65cae55-656d-4332-881a-52e62aaed458" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145031Z:e65cae55-656d-4332-881a-52e62aaed458" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:50:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0ce024eb-e970-4dda-8dc5-cd90e9be3248" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "75807811-ec36-4039-8782-cd02c43d2a83" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145046Z:75807811-ec36-4039-8782-cd02c43d2a83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:50:46 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8cf4b68d-51ca-4e1b-817a-ad0ff1c32e67" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "08487b4f-7fc1-4ac2-bc06-8c3da6697b9d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145102Z:08487b4f-7fc1-4ac2-bc06-8c3da6697b9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:51:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5ef73a93-244a-495b-bb2d-958ee85b2496" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "6d2e2ef8-da11-4748-8ca7-d01e6b05a6b0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145117Z:6d2e2ef8-da11-4748-8ca7-d01e6b05a6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:51:17 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a2d87aa2-6175-4afe-9310-6abea7582cba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "83bdc87b-a50f-44eb-92ff-7e6991d2b7c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145133Z:83bdc87b-a50f-44eb-92ff-7e6991d2b7c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:51:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ed8ba17c-1e3a-45f0-818b-99c27d2189c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "aeaca5d8-a051-42e3-a6b5-e549e699af1d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145148Z:aeaca5d8-a051-42e3-a6b5-e549e699af1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:51:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "aed50c16-2c7f-4cf2-a6e0-5789987c7bc3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0e8a5942-951a-4a3c-90b2-580cba6fbc04" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145203Z:0e8a5942-951a-4a3c-90b2-580cba6fbc04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:52:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b4d6f7a1-0ed5-483f-901d-d1fa5f286a67" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "66214643-d8a6-40f4-a62f-4a7c746b2e84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145219Z:66214643-d8a6-40f4-a62f-4a7c746b2e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:52:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c2aa1729-e76e-4acb-8743-ea9c0452f663" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "5b44dc39-44a7-4b60-853e-b6fc9a1f84d4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145234Z:5b44dc39-44a7-4b60-853e-b6fc9a1f84d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:52:33 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cca04ea1-3c42-4384-923f-79d3c31a434b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "15a52b8b-1e0d-44f0-beb2-d263e6799904" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145249Z:15a52b8b-1e0d-44f0-beb2-d263e6799904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:52:48 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cc96f94c-63b4-4fea-8ef5-5b7aeeff7e71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "cf2066d6-bd67-4473-92a4-2df41b3a1bba" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145304Z:cf2066d6-bd67-4473-92a4-2df41b3a1bba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:53:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6971c88b-d089-441c-88c0-7b3ddaef08b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "877231c5-18cb-4dfe-b0df-4816a219778a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145320Z:877231c5-18cb-4dfe-b0df-4816a219778a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:53:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b8f83d50-d573-46d2-9a15-37e2aba09f37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "33cb0994-8ca0-4dbd-8bd2-2e6e9a8977b5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145335Z:33cb0994-8ca0-4dbd-8bd2-2e6e9a8977b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:53:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "892ec99d-1e15-456b-b8b8-2da06b967a2e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "141e0cd8-30bb-4574-a13e-32c3d51c0bff" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145350Z:141e0cd8-30bb-4574-a13e-32c3d51c0bff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:53:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "53dbe9f7-32c9-44b7-bc36-6fe15c88d815" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "49a05a56-a25c-4522-a45e-c4894690cefc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145405Z:49a05a56-a25c-4522-a45e-c4894690cefc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:54:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "05100996-7478-41ed-bd80-5918df479586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "fc08a20c-7f5b-4555-a180-921b271a3dd7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145421Z:fc08a20c-7f5b-4555-a180-921b271a3dd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:54:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6410c485-ebd6-46b8-9392-28619f7ba9c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "d26c21f5-e63a-4bcc-8b03-2de7af41b982" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145436Z:d26c21f5-e63a-4bcc-8b03-2de7af41b982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:54:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e394a651-19d5-42d3-96e4-61ae60cba07f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "93b049b7-aab5-44be-833c-2b1c3090e423" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145451Z:93b049b7-aab5-44be-833c-2b1c3090e423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:54:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2f36010f-0bf6-4e0a-b59d-f9f781fa2980" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5172eeac-fe39-4b97-b82a-b6738ab6e489" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145506Z:5172eeac-fe39-4b97-b82a-b6738ab6e489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:55:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d9e79130-aeac-48b9-a8f5-d8063f1e9a72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "b4f30ede-1674-4cf3-ba7a-0815d6f5ce3c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145522Z:b4f30ede-1674-4cf3-ba7a-0815d6f5ce3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:55:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ce6533f8-b56b-4a47-a364-16fc1468eab2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "7d4428dc-f796-4b17-ac11-a5ac680c030a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145537Z:7d4428dc-f796-4b17-ac11-a5ac680c030a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:55:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9455737c-843a-4f12-8bbe-042a878cf732" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "04b8c022-9163-42da-9c07-cac3c3d8a2ba" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145552Z:04b8c022-9163-42da-9c07-cac3c3d8a2ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:55:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "247af127-b520-421d-b04f-f80a0a28adc6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8fbd1e94-1213-4d1c-acfe-2ad564f73bcd" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145607Z:8fbd1e94-1213-4d1c-acfe-2ad564f73bcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:56:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "dabec31d-ef02-47b1-be7d-1128348213e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "63c428f9-f78e-4381-afb3-37c2c4b81e9b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145623Z:63c428f9-f78e-4381-afb3-37c2c4b81e9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:56:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "bfd189f6-b267-4bbf-b153-f54a6bd8672d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "7f8f9cfd-5f54-4c7c-9654-fa645680c376" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145638Z:7f8f9cfd-5f54-4c7c-9654-fa645680c376" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:56:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c018684a-fad8-420c-9b9c-6895fadb7bf5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "644aadf9-3a86-449e-a668-fc4d8828e028" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145653Z:644aadf9-3a86-449e-a668-fc4d8828e028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:56:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "30d350f0-6cdb-4a9d-b95b-7f63cf19e861" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "fb964b10-e4ad-4192-b38f-2960863198c9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145708Z:fb964b10-e4ad-4192-b38f-2960863198c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:57:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "38946b0e-6c1a-4ccb-8e15-1a3b3bb7955d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "fe19461a-18c7-4815-b970-6707a3b057a1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145724Z:fe19461a-18c7-4815-b970-6707a3b057a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:57:23 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c7c9c510-569e-4490-a385-9a073ade2d5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "fcad167d-1369-453f-93f7-0bc3487bcf2a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145739Z:fcad167d-1369-453f-93f7-0bc3487bcf2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:57:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4caed4ef-4fc2-4eb9-af6a-e4cf14f74073" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "ed4d137a-5899-49cc-9581-8d2700bdf434" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145754Z:ed4d137a-5899-49cc-9581-8d2700bdf434" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:57:54 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "919f4569-02f4-4f49-a061-2f126af231f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4d3853b4-474e-42f0-bf00-cba7e3912f29" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145809Z:4d3853b4-474e-42f0-bf00-cba7e3912f29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:58:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5a9c4766-f0e0-4ccc-a847-a1614be97de5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "535b7037-9121-4b4f-bf86-f918013ef9bc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145825Z:535b7037-9121-4b4f-bf86-f918013ef9bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:58:24 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a5548019-e5b0-4a21-a52c-26667331d792" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "e7856151-c4ab-4e5c-8d8e-ca80fa540d6c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145840Z:e7856151-c4ab-4e5c-8d8e-ca80fa540d6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:58:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1a94a231-fe65-4309-b62a-e0de5a789b95" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "23f22b82-42f4-466d-b22f-ec8576d71e8a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145855Z:23f22b82-42f4-466d-b22f-ec8576d71e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:58:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "61190927-7ce4-489a-a55c-538686ad4de5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "82aecd44-961c-4614-adf6-41c1e3a757ce" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145910Z:82aecd44-961c-4614-adf6-41c1e3a757ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:59:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "286a2052-eb65-4976-aee3-29ab5c89de0a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "b9e592ad-a1be-443b-a31c-69368768f0e7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145926Z:b9e592ad-a1be-443b-a31c-69368768f0e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:59:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7f777f8c-6c32-4811-9580-514990dd394f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "656410c1-6210-4e7e-93c6-7b62c4fb7d8e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145941Z:656410c1-6210-4e7e-93c6-7b62c4fb7d8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:59:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e17d19ae-700d-4808-a03d-f80baf23678a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "7811360f-0f8b-4415-9163-ad68fd8d3397" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T145956Z:7811360f-0f8b-4415-9163-ad68fd8d3397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 14:59:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2d2145a5-6b4a-43bf-8e6d-17dc1e884e2e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e04c4a58-dc21-4d08-9488-adb7aa5d7105" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150011Z:e04c4a58-dc21-4d08-9488-adb7aa5d7105" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:00:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "65047181-f517-4947-a7ed-4cd18b9b6980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "7f8c8801-c7a1-426c-98f1-87f60a307621" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150026Z:7f8c8801-c7a1-426c-98f1-87f60a307621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:00:26 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9a03e60e-8141-4c6f-9f16-e77590e12b11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "e0df715a-cb85-49b3-a087-f96798a8cffb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150042Z:e0df715a-cb85-49b3-a087-f96798a8cffb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:00:41 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c2dce360-be46-4350-bbde-31f88172e0ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "956f99f9-9830-440e-a31d-116d70f99d6d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150057Z:956f99f9-9830-440e-a31d-116d70f99d6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:00:57 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9f1ae9a7-4926-44bc-be48-53dbb8853a7f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9150641a-f73d-4a01-b8da-f2d8c8dfdcce" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150113Z:9150641a-f73d-4a01-b8da-f2d8c8dfdcce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:01:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "744d64b0-f304-4fb3-99e1-fcbf11c4eb5f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "83a65da9-0c98-4f9e-a496-c73576c7946f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150128Z:83a65da9-0c98-4f9e-a496-c73576c7946f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:01:28 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5b825f5a-5231-4505-bc7f-0423215900ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "91c9a4c0-5c65-4026-ac9e-e52b4f5b42c6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150144Z:91c9a4c0-5c65-4026-ac9e-e52b4f5b42c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:01:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "31d1c40c-9a88-460b-8af8-3f403ae77083" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "3ff82a67-38fc-4564-8ea4-4f3e2639c856" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150159Z:3ff82a67-38fc-4564-8ea4-4f3e2639c856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:01:58 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "55cee1a8-2798-4368-9752-0fa827a5109b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "68da0046-a359-4f27-8025-705d3e93d719" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150214Z:68da0046-a359-4f27-8025-705d3e93d719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:02:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ea5fdd0f-8c82-4afa-a3b8-b6f51ecd8191" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "9cc69b96-c7cc-4fba-904b-32c37c3a7a7c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150229Z:9cc69b96-c7cc-4fba-904b-32c37c3a7a7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:02:28 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7be766e6-f0ca-460c-91e3-91e54586da55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2abc9dd6-8f58-46e8-b2c9-97c4178487ab" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150244Z:2abc9dd6-8f58-46e8-b2c9-97c4178487ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:02:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ab2f8a50-f43a-4903-a115-fbb61a5f7871" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "bf770a80-51b2-44eb-a940-81dd6c1e270c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150300Z:bf770a80-51b2-44eb-a940-81dd6c1e270c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:02:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "59bfaf03-e3d6-4530-8dfc-84b5efbbd20d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "ff71e082-a904-415b-808e-ce8ee415b9d2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150315Z:ff71e082-a904-415b-808e-ce8ee415b9d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:03:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1762eaaa-fe6c-4717-a1c7-60f38f3ceb8a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "992d7a55-4f30-462c-b4bd-9cb1cd5d36b0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150330Z:992d7a55-4f30-462c-b4bd-9cb1cd5d36b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:03:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8584cb66-91d0-43ab-ba27-90965e3a34ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "83259a0a-46e9-4ffc-9ca8-d9805b83ccde" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150345Z:83259a0a-46e9-4ffc-9ca8-d9805b83ccde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:03:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "dfe18ff2-c72e-4113-9c36-6ceaa201fd94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "a0d973be-ea08-406b-a053-c25ed19c01cb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150400Z:a0d973be-ea08-406b-a053-c25ed19c01cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:03:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e92e5939-6401-4702-939f-9b2a95c94aad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "733551c3-0170-4def-9896-2b4c02c84bc2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150415Z:733551c3-0170-4def-9896-2b4c02c84bc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:04:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5e7b2909-c9c9-4a52-ac61-84efbfc6e2b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "7080d9ad-9320-4d90-830a-4bb8434b9022" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150431Z:7080d9ad-9320-4d90-830a-4bb8434b9022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:04:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c7c8e5a6-b3d5-4e43-8055-0fe9df7b8139" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "62853d5d-b316-46b3-8c05-fb685d2bee0f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150446Z:62853d5d-b316-46b3-8c05-fb685d2bee0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:04:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "36ce458f-d18d-499d-804e-35b3222f9fb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "8ec14e3e-552c-441e-af19-d96fbfeaa634" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150501Z:8ec14e3e-552c-441e-af19-d96fbfeaa634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:05:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "81969059-6fe2-4a63-85ad-82a6a04c9842" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "47e551b1-a032-408d-9f05-8a421b4cbd49" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150517Z:47e551b1-a032-408d-9f05-8a421b4cbd49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:05:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0b26e47d-2eb1-47ba-a1db-ad71612fd42c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "62bef140-768a-45a3-beeb-1941d9568448" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150532Z:62bef140-768a-45a3-beeb-1941d9568448" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:05:31 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eae3430c-a3e6-4ed9-8628-d984930ca0a8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "52b39cf7-b852-4090-8f1f-0f919da1576a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150547Z:52b39cf7-b852-4090-8f1f-0f919da1576a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:05:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1a838968-2761-4d7d-905c-25f8c8fcac67" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "211fc4e5-79bb-4e9d-a83e-5442f373c864" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150603Z:211fc4e5-79bb-4e9d-a83e-5442f373c864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:06:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3829e92b-0372-4173-8030-0e0aab239a26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-correlation-request-id": [ + "b4fd3b40-4981-43ad-8415-cc817bf867d5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150618Z:b4fd3b40-4981-43ad-8415-cc817bf867d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:06:17 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a721c7e1-7785-4628-9e8e-69edfcb42514" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "fa897917-09a2-40bf-a841-e0b944e60418" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150633Z:fa897917-09a2-40bf-a841-e0b944e60418" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:06:33 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "961a1dda-d62c-4cf2-b2e3-3b784b65ab4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-correlation-request-id": [ + "06fe970c-7d36-4b5e-85cb-df4277bc2623" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150648Z:06fe970c-7d36-4b5e-85cb-df4277bc2623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:06:48 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "815997f2-ff26-4c27-a09a-f5ff185921cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-correlation-request-id": [ + "b1f233da-3923-46dd-9b10-35ad552b6feb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150703Z:b1f233da-3923-46dd-9b10-35ad552b6feb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:07:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3cfbc1af-207f-4717-ab85-3e75ec2fea0d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-correlation-request-id": [ + "367cf67f-ecb3-47a5-abd7-041d73239dce" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150719Z:367cf67f-ecb3-47a5-abd7-041d73239dce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:07:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0ee2f879-24f7-4296-a0ee-929b15da4233" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-correlation-request-id": [ + "c176a28e-7d3a-46f9-9b00-77b7781cdd10" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150734Z:c176a28e-7d3a-46f9-9b00-77b7781cdd10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:07:33 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6a8baa16-9a28-469b-ba5c-9b8c056b7007" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-correlation-request-id": [ + "3877f06f-24bf-402c-8b2e-9506d3074c35" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150749Z:3877f06f-24bf-402c-8b2e-9506d3074c35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:07:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "210793f9-6b24-43cf-9f6f-d4a5b27fc63a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-correlation-request-id": [ + "8a488d04-6f04-4df4-b88e-5e681be000a7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150804Z:8a488d04-6f04-4df4-b88e-5e681be000a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:08:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cb13e2fb-d024-4cd2-a5d4-806117c7da9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-correlation-request-id": [ + "176f2598-9eb9-49dc-937e-dd3e10812675" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150820Z:176f2598-9eb9-49dc-937e-dd3e10812675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:08:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1b75ca0b-2b9f-41cb-b94e-6ae12a10650a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-correlation-request-id": [ + "c6b4ed77-31f5-4bd6-8951-47651ba8a6f0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150835Z:c6b4ed77-31f5-4bd6-8951-47651ba8a6f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:08:34 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "84c59e11-95a0-4c5a-8003-f8359a4c5a58" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3569dde1-fa6a-490d-8f1f-5963f9598cf0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150850Z:3569dde1-fa6a-490d-8f1f-5963f9598cf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:08:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6c0cc952-586b-4c92-992e-71e64559740d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "12cbfc9a-7490-4f2f-bdc5-969877712281" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150905Z:12cbfc9a-7490-4f2f-bdc5-969877712281" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:09:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7799b5fa-82a4-4292-8044-ae57d8f19f6f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-correlation-request-id": [ + "538e4c86-501f-40ff-86d6-45e0dfdf01b5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150921Z:538e4c86-501f-40ff-86d6-45e0dfdf01b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:09:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "44c6afc3-bdec-4c50-95d3-6355f5716d69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-correlation-request-id": [ + "a30d271d-9b0a-48ea-a8f6-e48bae6d1d29" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150936Z:a30d271d-9b0a-48ea-a8f6-e48bae6d1d29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:09:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "864f2e6a-9afb-4a5d-b611-68422dfcf5cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-correlation-request-id": [ + "de94bc13-4a72-40e4-83ba-33fb41fa08a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T150951Z:de94bc13-4a72-40e4-83ba-33fb41fa08a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:09:51 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4d6cdc47-5ad5-49e5-a325-17519d706ed5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-correlation-request-id": [ + "01a0af60-befc-43c2-8a9b-ca87f9cff891" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151007Z:01a0af60-befc-43c2-8a9b-ca87f9cff891" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:10:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "05a3482e-dcdb-4c73-8e50-cb046a5fd883" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7f9b79d2-302d-4a57-b5d3-d9150782b51e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151022Z:7f9b79d2-302d-4a57-b5d3-d9150782b51e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:10:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e2ca7fb1-bc77-4fb7-887f-0d71e986605b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-correlation-request-id": [ + "bc0530a9-4ede-4ffc-b622-c00be8575765" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151037Z:bc0530a9-4ede-4ffc-b622-c00be8575765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:10:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a7972eec-ca59-411f-87a6-0dc2d0b2ed82" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-correlation-request-id": [ + "3ea8142d-1056-478c-98ae-bf33285675c8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151052Z:3ea8142d-1056-478c-98ae-bf33285675c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:10:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2b7ade57-a8fc-45d2-838c-c832eed1f98e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-correlation-request-id": [ + "0fb55326-cc9b-44d2-ad0c-428b785a10d2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151107Z:0fb55326-cc9b-44d2-ad0c-428b785a10d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:11:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a9ad5125-67a9-4e7f-b567-f1512cec430d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-correlation-request-id": [ + "47e645e6-63c2-44bf-9fe7-ecc180d479c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151123Z:47e645e6-63c2-44bf-9fe7-ecc180d479c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:11:23 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b2882189-8c0e-4d0a-89e5-56fbabdb89fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-correlation-request-id": [ + "93ef3010-fd71-4eec-b4e7-d56d1c6c3405" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151138Z:93ef3010-fd71-4eec-b4e7-d56d1c6c3405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:11:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c0938bf2-43e6-4273-abbd-593dc9e679cf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-correlation-request-id": [ + "99bfb5cb-ffc9-448f-8143-ff96af1200a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151153Z:99bfb5cb-ffc9-448f-8143-ff96af1200a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:11:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "60361824-da3e-4d5b-8feb-83c2cccdb3c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d97ccca2-98e6-4940-9be7-184f5ca18f3b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151221Z:d97ccca2-98e6-4940-9be7-184f5ca18f3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:12:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "52561d78-54fd-4092-b582-5747012b5cad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0f3b08bd-901a-4e2a-ac5b-ad50018f6997" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151237Z:0f3b08bd-901a-4e2a-ac5b-ad50018f6997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:12:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "692efb66-06da-4c32-91f1-b63e6c807504" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c799033c-3e8e-4a66-8047-7156dea262e8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151252Z:c799033c-3e8e-4a66-8047-7156dea262e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:12:51 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b92f0e5b-9c2c-4308-8863-d8fb53ec1516" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ac1084f7-8f84-470c-afc9-9f71170dfca4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151307Z:ac1084f7-8f84-470c-afc9-9f71170dfca4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:13:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a0b3d598-c9c1-4b9d-ab4e-56b60c373ccc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "4b15949a-5c57-424c-992e-defbbbbb008d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151322Z:4b15949a-5c57-424c-992e-defbbbbb008d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:13:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b4cb9923-7459-4c79-909e-27578e77543b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d0a4a670-c7a6-48ca-867e-f76f0d17ae74" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151337Z:d0a4a670-c7a6-48ca-867e-f76f0d17ae74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:13:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "17ecfe0c-3b80-4e62-b9de-f32bc21fdcfc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "98cebad1-7664-44e0-975e-72ebb5da341a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151353Z:98cebad1-7664-44e0-975e-72ebb5da341a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:13:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d3db0867-c980-4a5e-970c-65d7fe30f16a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "acef964b-b440-4ecc-87d8-26ca63dbf4ba" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151408Z:acef964b-b440-4ecc-87d8-26ca63dbf4ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:14:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eb57e32c-fd17-4f88-8a6c-21e50325c4f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2cc65a53-acf6-4d28-a15c-099e5b52a76c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151423Z:2cc65a53-acf6-4d28-a15c-099e5b52a76c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:14:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4e59020a-10da-4da1-a989-c53bdec36ebf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1ae576b8-9fe1-45dc-8c4d-c32196b5325c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151438Z:1ae576b8-9fe1-45dc-8c4d-c32196b5325c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:14:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d1d1f932-3bce-4106-98c6-c2fc2756c13c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "97f21615-75a0-4ce1-93f4-5da17e3d317c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151453Z:97f21615-75a0-4ce1-93f4-5da17e3d317c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:14:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fc33b6e6-5ba4-4fe5-8d3f-6c17e546916f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "16210c7f-1f14-4f40-a924-8ae6e01c2a80" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151509Z:16210c7f-1f14-4f40-a924-8ae6e01c2a80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:15:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7fc03cf3-4b9f-42c5-9027-42e3b68e3015" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "9c72977f-a7e2-4736-83e1-19deaa90e28c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151524Z:9c72977f-a7e2-4736-83e1-19deaa90e28c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:15:23 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f93c01e7-66c7-4eb6-b2bd-fb6dd4b0cf7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "de5147d6-689f-4d4e-878c-0e0fccb19e84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151539Z:de5147d6-689f-4d4e-878c-0e0fccb19e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:15:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b5a53e4b-e78c-4aa4-9ae4-6cfb9669806f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "910beb0e-7176-40e1-be99-6b4cce19254b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151554Z:910beb0e-7176-40e1-be99-6b4cce19254b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:15:53 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "11f8686b-d9a0-474e-baa6-36ada4752dd0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "39516627-29eb-41ee-834c-d7812d94f1e0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151609Z:39516627-29eb-41ee-834c-d7812d94f1e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:16:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b91ce827-2dfa-4f62-ae4d-629b5e45e4f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "769135bc-a3d4-4f32-ad4c-8fbb170ec5a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151625Z:769135bc-a3d4-4f32-ad4c-8fbb170ec5a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:16:24 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ea6660f6-6570-4c36-837e-ff96624c3b28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "5bf2aac8-a06b-4016-a5ef-401bd9e8ca1a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151640Z:5bf2aac8-a06b-4016-a5ef-401bd9e8ca1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:16:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4aefc5c5-1936-47d7-a580-bcbed5a9aa62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b218e801-535e-4f28-8e4e-76d0ac300417" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151655Z:b218e801-535e-4f28-8e4e-76d0ac300417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:16:54 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "50720bfc-08b1-4219-a834-0b4ed5e18777" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "63af1c79-a619-4e05-b597-91eaf4bd8c10" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151710Z:63af1c79-a619-4e05-b597-91eaf4bd8c10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:17:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d3e36dba-627a-444d-b673-975b7ff58b92" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "b30527b3-a2fb-4364-8eab-9ebbb5f9e778" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151726Z:b30527b3-a2fb-4364-8eab-9ebbb5f9e778" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:17:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f96c76f7-df7b-4c7f-805c-44984042d21b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "f20249bb-bbeb-40cb-bd10-e931c4c2d486" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151741Z:f20249bb-bbeb-40cb-bd10-e931c4c2d486" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:17:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "69f8f005-0dd2-4387-924a-21c5624085c0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "4904927b-6aec-4d5d-8613-d272f4f35429" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151756Z:4904927b-6aec-4d5d-8613-d272f4f35429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:17:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fcfaa26d-b054-40bd-a3b7-3594431dac20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "913ac55a-1842-4135-bd68-65dc3403792d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151811Z:913ac55a-1842-4135-bd68-65dc3403792d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:18:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ce7e04e6-fe86-4a55-98d2-78971783bbc6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "6d34f0cc-218c-43d1-875e-2486fdcb56dd" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151827Z:6d34f0cc-218c-43d1-875e-2486fdcb56dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:18:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "62113da2-4b42-43dc-a04f-cf5af0c927aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "fcdcfb6d-ada5-46c5-a48e-3593f5f0082c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151842Z:fcdcfb6d-ada5-46c5-a48e-3593f5f0082c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:18:41 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b3080cee-5969-4c71-bcb3-d22594ca8877" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "04ff1c9d-9953-4290-9c1d-4dd0a2bc852a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151857Z:04ff1c9d-9953-4290-9c1d-4dd0a2bc852a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:18:56 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5383795b-5d3d-499e-aafd-993990cec217" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "0f2f8c77-3e17-4cc8-92ad-fe3b4d330070" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151912Z:0f2f8c77-3e17-4cc8-92ad-fe3b4d330070" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:19:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b7d9bf8b-cf9b-44e8-b3cf-90609ec4848e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7d9337fb-6c20-4581-802e-5b99c50ac944" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151927Z:7d9337fb-6c20-4581-802e-5b99c50ac944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:19:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "24db10b2-dfb6-4624-a117-031d038a4f94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "51d24768-a4a9-4c0d-a5f2-dafb30857cb9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151943Z:51d24768-a4a9-4c0d-a5f2-dafb30857cb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:19:42 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7f4eb139-5fd3-4662-ad39-7fd63ad3898b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "ea9c2916-1ee0-4b76-9c64-23c729986ae2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T151958Z:ea9c2916-1ee0-4b76-9c64-23c729986ae2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:19:57 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "24ce8d43-edb6-4d1b-9944-d540d54f70a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "de7eae66-85d2-49cd-9a84-9af58c818062" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152013Z:de7eae66-85d2-49cd-9a84-9af58c818062" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:20:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ca52d607-2a84-4590-a602-9f3a4023ff62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "6a370226-6d0f-4066-a98f-0214f723cdc5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152028Z:6a370226-6d0f-4066-a98f-0214f723cdc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:20:28 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "45fb5485-a680-46f2-b575-39bf0c754f12" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "5d9d47cf-b664-4e66-9b64-d2ebd5181e11" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152044Z:5d9d47cf-b664-4e66-9b64-d2ebd5181e11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:20:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8d50390f-b1bd-42da-8f17-0d5eebbd6131" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "d42c168e-ea63-4f6f-806d-e6fc8efb9fa7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152059Z:d42c168e-ea63-4f6f-806d-e6fc8efb9fa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:20:58 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e65e10da-5bb3-461f-97d9-b009320f848b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "2db6d04d-90c5-4dcc-b9d9-80a6ad533cad" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152114Z:2db6d04d-90c5-4dcc-b9d9-80a6ad533cad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:21:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "39184af9-fc2a-48cf-afe3-81e5e01e0a55" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "4ae7f36b-3138-4d7c-95b2-e89058cf88a1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152129Z:4ae7f36b-3138-4d7c-95b2-e89058cf88a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:21:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e29fc4ba-e404-459e-97b0-ea0f6189a3bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "583d5cde-0ceb-4100-9c51-7aa4ac8c42c1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152144Z:583d5cde-0ceb-4100-9c51-7aa4ac8c42c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:21:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a5a03130-d5e4-422d-ad39-f64a515a7f4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "66f66015-b968-43da-844d-66cec3e6c06d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152200Z:66f66015-b968-43da-844d-66cec3e6c06d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:21:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1913a129-08e8-482f-aad8-d05bb31cb555" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "4c19d30c-0a3d-413b-985a-8faf2483cf5b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152215Z:4c19d30c-0a3d-413b-985a-8faf2483cf5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:22:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2f325365-9ac3-43c8-96e5-db3464b20790" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "79258601-71ef-46c6-8fe1-927daf97172a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152230Z:79258601-71ef-46c6-8fe1-927daf97172a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:22:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cfe2003b-6400-4285-bc4b-a50aa8cc0729" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "d3f453fb-0e5a-4fdd-87f0-f4216b5d25d5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152246Z:d3f453fb-0e5a-4fdd-87f0-f4216b5d25d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:22:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c6303379-545c-4e0c-a58e-435a2705c0ad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5bbe9de7-46ad-42cc-9947-4da06f68a861" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152301Z:5bbe9de7-46ad-42cc-9947-4da06f68a861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:23:00 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a233c68c-5ef2-4704-98a0-b9537e48c22c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "560bd3fb-b7ce-40f3-a8f4-8864bfc27def" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152316Z:560bd3fb-b7ce-40f3-a8f4-8864bfc27def" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:23:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "562b881b-100c-4104-a950-15e99fa139de" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "dd50a023-b696-4f7b-9a57-46f2567e24b3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152331Z:dd50a023-b696-4f7b-9a57-46f2567e24b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:23:31 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fe29e2ab-a004-4184-9f9d-aa3e52b0abbd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "e89e09dd-20e4-42ab-99e0-1fadd49a0636" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152347Z:e89e09dd-20e4-42ab-99e0-1fadd49a0636" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:23:46 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b5d5867b-b1f4-4923-8e9d-7fe9e3b42eb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "5e961d84-9fcb-4293-9f57-2a6a3d971a6a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152402Z:5e961d84-9fcb-4293-9f57-2a6a3d971a6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:24:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "258d14bf-8f87-46d2-b59d-0aea7ca0f119" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "c9e2090c-7be0-4f70-92d6-6e4e16c180e9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152417Z:c9e2090c-7be0-4f70-92d6-6e4e16c180e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:24:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5e7a04e2-e3b9-4474-bdf6-ba313374aa67" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "c7e773ee-7463-40bd-a3ae-5b8489acd5c9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152432Z:c7e773ee-7463-40bd-a3ae-5b8489acd5c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:24:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8feb2fd6-d932-4329-a838-6605ac997b79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "57e699a3-ab54-49fe-b9d0-858f8584435f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152447Z:57e699a3-ab54-49fe-b9d0-858f8584435f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:24:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "65aa48b1-f554-4acd-a2e1-247d795d3b52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "bf0234dd-e7f6-4c77-b13c-21a6742ad214" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152503Z:bf0234dd-e7f6-4c77-b13c-21a6742ad214" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:25:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2dc6bd86-fe1d-4206-8ed7-7457a7e3f23b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "d46f9bce-de5e-4773-a794-9e19ac641ad7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152518Z:d46f9bce-de5e-4773-a794-9e19ac641ad7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:25:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "bd966db4-5671-4f18-9aea-ed54c4d2ae00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "2e0b2010-add7-4c1d-929e-f8c503486637" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152533Z:2e0b2010-add7-4c1d-929e-f8c503486637" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:25:33 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "99bc54db-290e-4b10-a7c3-06b3c888ebd2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "d1c62dfe-7f4e-4bfe-a6bc-78f209cf512f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152548Z:d1c62dfe-7f4e-4bfe-a6bc-78f209cf512f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:25:48 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a384ea67-5f14-4d43-b16b-d7fedec75da2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "bf3d16dd-99c2-461d-a1d2-b84e3e0144b4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152604Z:bf3d16dd-99c2-461d-a1d2-b84e3e0144b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:26:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "94fc1959-0f56-4675-b048-77c1611d27cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "f8970a50-123b-4db2-8168-388b5e27350b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152619Z:f8970a50-123b-4db2-8168-388b5e27350b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:26:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5188470d-8c70-419b-bcb7-af80e1e48ed7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "eb4c7f9e-0fe8-444c-a62f-ce9a337e7266" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152634Z:eb4c7f9e-0fe8-444c-a62f-ce9a337e7266" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:26:34 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ebaa1dd4-0a99-43e0-82c2-4900a152b600" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "5f018c06-7cbe-43f5-b96a-1766f45493ca" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152649Z:5f018c06-7cbe-43f5-b96a-1766f45493ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:26:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "51cdfc7e-0d4f-486a-914c-314d1875ba44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5fdaded8-6f27-49fb-9b16-0b5d6d69a746" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152705Z:5fdaded8-6f27-49fb-9b16-0b5d6d69a746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:27:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "35124967-6db9-4974-ba7b-a7d1abcf4758" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "701706cf-7995-4a23-a63a-203a819b69f5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152720Z:701706cf-7995-4a23-a63a-203a819b69f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:27:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b57e382f-9e3c-4307-af03-1b5bc1afedda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fee65e77-f30a-4895-986f-a7d50027313f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152735Z:fee65e77-f30a-4895-986f-a7d50027313f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:27:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "47629ede-d291-424b-aa1f-0f0c46d610ee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "f5a292f7-7cb6-43c2-b67f-e5632d8e0d42" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152750Z:f5a292f7-7cb6-43c2-b67f-e5632d8e0d42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:27:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ec2778a1-1d94-4ef2-8711-6b798410a80e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "8c031833-b5e1-4b75-858d-c9f83819e906" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152806Z:8c031833-b5e1-4b75-858d-c9f83819e906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:28:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1911709f-fc53-424f-8fbc-03169f456a77" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "c2d511ec-3dc3-4879-a49f-bb6c588a856b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152821Z:c2d511ec-3dc3-4879-a49f-bb6c588a856b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:28:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "236e8820-1477-49c3-8bbe-269c77259b9e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "cc2659a8-0be5-468f-9aba-49eb95b86584" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152836Z:cc2659a8-0be5-468f-9aba-49eb95b86584" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:28:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7d200901-5030-45d4-8877-d727e37d001a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "96b1e60b-69e3-4c5f-94c5-dbb883549cc8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152851Z:96b1e60b-69e3-4c5f-94c5-dbb883549cc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:28:51 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "051dd458-a997-4e5d-b51d-5cb6fc8eb4b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "0877b0bd-7fe9-4aef-8bb4-efabd7b17379" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152906Z:0877b0bd-7fe9-4aef-8bb4-efabd7b17379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:29:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "be60cde5-fcc1-4de6-8edd-9cf908c901cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "deaacb05-befd-4889-94f0-583a4f9391f2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152922Z:deaacb05-befd-4889-94f0-583a4f9391f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:29:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "30b577b4-fb5d-44ea-aba5-87348a49b203" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "b7b1f334-fc48-4805-984f-56c2219d571b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152937Z:b7b1f334-fc48-4805-984f-56c2219d571b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:29:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "173793ec-58cc-418a-835b-17129ec83a06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "c8e651db-5b5b-407f-9c23-a3daff8cee9b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T152953Z:c8e651db-5b5b-407f-9c23-a3daff8cee9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:29:53 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "594e970f-207d-4978-9034-e90712cda260" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "28d651d0-a46a-45cc-970f-db5fad663f1e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153008Z:28d651d0-a46a-45cc-970f-db5fad663f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:30:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "beeed77a-36e7-4a6d-942d-472df7e8e3af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "83cb05fb-8441-45cb-b80a-557b82e03103" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153023Z:83cb05fb-8441-45cb-b80a-557b82e03103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:30:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "675e1b09-dea6-477d-82f2-08c8404317da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "b985d801-7424-4632-8bd4-cdd8fce1aa93" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153039Z:b985d801-7424-4632-8bd4-cdd8fce1aa93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:30:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0cbbf65e-c95d-4af0-b3a9-23caa2da4130" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "2e1b6f7d-87c5-4903-b1ee-1007f5229836" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153054Z:2e1b6f7d-87c5-4903-b1ee-1007f5229836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:30:54 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "54d3797a-a62c-45fa-a6a3-e5601855e447" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "b65e612b-aa7d-4b66-8d03-c1ee43b76414" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153109Z:b65e612b-aa7d-4b66-8d03-c1ee43b76414" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:31:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0d0ca7b1-401e-4e5f-a704-6480fc4f3165" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "1b993495-9a2a-43b2-b9d6-b86efaa16f25" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153124Z:1b993495-9a2a-43b2-b9d6-b86efaa16f25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:31:24 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "35ddf497-2c8d-4865-ab1b-d29a0e51a5d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "401a3ade-5f0e-424a-bccf-2a3013e13786" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153139Z:401a3ade-5f0e-424a-bccf-2a3013e13786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:31:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0500a477-0688-488e-b989-61406b870350" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "ce97adde-5f1b-43c6-9227-7b5da46a7d89" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153155Z:ce97adde-5f1b-43c6-9227-7b5da46a7d89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:31:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e7eb131a-d227-41a0-b565-0cbb059b968e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "b509a472-95a5-4087-a084-e70dde3ecda5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153210Z:b509a472-95a5-4087-a084-e70dde3ecda5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:32:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d721b3d4-906d-4516-a1bb-ee608afc708d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "802b895b-2d46-4eb8-b2d3-2c9463d220e1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153225Z:802b895b-2d46-4eb8-b2d3-2c9463d220e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:32:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "dd0abd4a-663a-4109-8ffa-cf1c5c6be973" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-correlation-request-id": [ + "1500af81-c860-48f2-b44d-f52e73ead9ef" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153240Z:1500af81-c860-48f2-b44d-f52e73ead9ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:32:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "83fc96ba-67e2-404d-be04-b92a6809634d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "6fc7c34c-13c1-47ad-b5f4-4d5111af61d1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153256Z:6fc7c34c-13c1-47ad-b5f4-4d5111af61d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:32:56 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a4df94d8-bcda-4a03-be1b-b79a9be52cfc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "4eb7834a-385d-4243-af06-71f3129a8b87" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153311Z:4eb7834a-385d-4243-af06-71f3129a8b87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:33:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "83f21f5c-68ce-4618-b8fb-82e5405446e4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "fd7ca4e6-0f26-4cbd-83aa-423cba6a3412" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153326Z:fd7ca4e6-0f26-4cbd-83aa-423cba6a3412" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:33:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6ecd680e-a7ee-4bab-a35a-03e50292851e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "7ffcc6d1-6e6d-4ba6-a77b-1401819cbaf6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153341Z:7ffcc6d1-6e6d-4ba6-a77b-1401819cbaf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:33:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "821ba3e9-1223-4fa2-a56a-78df67584de3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "cffb80ea-dfec-4940-9a30-2a859d5bcb0d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153356Z:cffb80ea-dfec-4940-9a30-2a859d5bcb0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:33:56 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0132256c-d40c-4170-9228-62a90252ab1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "57838f04-25c5-4ef7-a6f0-eb6bc7cc3696" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153412Z:57838f04-25c5-4ef7-a6f0-eb6bc7cc3696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:34:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "168d0a96-29dd-45a5-a984-5840d6c4bad0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "24c058b6-926e-47ab-a44c-3a7782384e21" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153427Z:24c058b6-926e-47ab-a44c-3a7782384e21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:34:26 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0a6837ac-989a-4c4d-b1cb-b75d10d32ee5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "afe2b0b7-53da-412e-810f-affe03aefc6c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153442Z:afe2b0b7-53da-412e-810f-affe03aefc6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:34:41 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3cdef2b2-c3f5-4c2c-96c6-3daa3670fde8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e3ba307f-530d-40ab-8fb3-7fa2c420ac70" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153457Z:e3ba307f-530d-40ab-8fb3-7fa2c420ac70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:34:57 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "641bf2d0-b69e-4f19-a8c8-8692d929aca7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "56ffdafa-655e-4e51-8c12-f65dfdc5e80a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153513Z:56ffdafa-655e-4e51-8c12-f65dfdc5e80a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:35:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8a365147-289f-415a-89b8-33bbf138a397" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "7d22c73a-ea71-4f5c-9062-4a5a3c75e416" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153528Z:7d22c73a-ea71-4f5c-9062-4a5a3c75e416" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:35:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2a6325db-8926-428a-807d-8f95f5b826c9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "1e5be83b-6208-4834-8010-61b162ba578d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153543Z:1e5be83b-6208-4834-8010-61b162ba578d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:35:42 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2aedb86a-635f-4d52-8cd8-edabf9cc7d0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "03b8c4e4-576c-4bb0-b96e-bbf31fb8d54c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153558Z:03b8c4e4-576c-4bb0-b96e-bbf31fb8d54c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:35:57 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cff21b77-4912-42c2-bf89-528088daac42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "3bf0d848-22dd-4621-8ba2-4ed71bf815be" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153614Z:3bf0d848-22dd-4621-8ba2-4ed71bf815be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:36:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0262d682-25fd-4683-b085-63fba1ed36ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "bda47ede-c96a-4c1c-a913-8fb91d21b095" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153629Z:bda47ede-c96a-4c1c-a913-8fb91d21b095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:36:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "30dc74b1-7144-41e0-9559-a6be7418e8f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-correlation-request-id": [ + "74c6752e-4e9f-4311-b96f-fe3258dfa4e8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153644Z:74c6752e-4e9f-4311-b96f-fe3258dfa4e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:36:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c61fcca7-06c7-40c4-85a5-082b38c16df9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "797e149e-e915-47e9-aca0-2c28109453f5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153659Z:797e149e-e915-47e9-aca0-2c28109453f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:36:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3a98ae64-cbf4-4cd3-8be2-4041e01ffcde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "e9dcfe60-1ef5-4f1f-bd4d-87797281a90c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153715Z:e9dcfe60-1ef5-4f1f-bd4d-87797281a90c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:37:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5e92fb80-fbae-4121-a367-c0b742ced7fe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-correlation-request-id": [ + "4454a9c8-6eea-4c0c-bae8-212b96aa072d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153730Z:4454a9c8-6eea-4c0c-bae8-212b96aa072d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:37:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d82dc13f-db40-46a6-9f16-e98c69854fba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "842a6ddd-91a0-437d-9780-2ee1aad333bf" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153745Z:842a6ddd-91a0-437d-9780-2ee1aad333bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:37:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "17161109-a003-4410-bfc3-d39f1f07b31f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-correlation-request-id": [ + "6460bc8c-c85e-4993-a111-7eca5ca62018" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153801Z:6460bc8c-c85e-4993-a111-7eca5ca62018" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:38:00 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a9d0da09-a5fd-41da-a3db-c30c23c9ad34" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-correlation-request-id": [ + "4c63378c-b805-4522-b8fe-f172f87f5c14" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153816Z:4c63378c-b805-4522-b8fe-f172f87f5c14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:38:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "554ad875-3478-4f92-91fc-d1b744ce37e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1d24c62a-3382-46a8-92d1-ab2b015098ec" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153831Z:1d24c62a-3382-46a8-92d1-ab2b015098ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:38:31 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "41e453a2-3a5f-432c-9b61-3be765725137" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-correlation-request-id": [ + "d05f32c0-d884-4c45-9cfd-dbaf94e674ab" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153846Z:d05f32c0-d884-4c45-9cfd-dbaf94e674ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:38:46 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2fb24fac-20f8-4cf7-97cf-fd24eec8ffcb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-correlation-request-id": [ + "370ce0e1-c469-47dc-9853-ea7a1ba9abcc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153901Z:370ce0e1-c469-47dc-9853-ea7a1ba9abcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:39:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "98f52af2-7dea-4675-a06d-4a083e44486e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-correlation-request-id": [ + "a6b48635-9050-4ecc-a855-878368711ef5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153916Z:a6b48635-9050-4ecc-a855-878368711ef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:39:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d2f21d3c-6a7e-4cf1-bd42-9f3172b6e166" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "63a96023-ba39-494b-a666-b76558f0936c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153932Z:63a96023-ba39-494b-a666-b76558f0936c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:39:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d80e3a7b-cfc3-4b70-817f-9373df025342" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-correlation-request-id": [ + "4fbc383d-38d7-4b28-83f8-056e19c1d1a9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T153947Z:4fbc383d-38d7-4b28-83f8-056e19c1d1a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:39:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0226594e-dd38-4dbb-a1ac-762730e4c85d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-correlation-request-id": [ + "90093644-1c3a-43df-bd7a-0fe300f2c361" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154003Z:90093644-1c3a-43df-bd7a-0fe300f2c361" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:40:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e15a72a0-c33b-48d1-b71b-02777263be4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-correlation-request-id": [ + "40745477-f4f3-425a-bc65-c13843ebbe99" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154019Z:40745477-f4f3-425a-bc65-c13843ebbe99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:40:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5acfedf5-4d2d-4ec1-b076-b4fd24c8bb35" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-correlation-request-id": [ + "97a139f5-3d82-4468-84a6-a0eab118d27d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154034Z:97a139f5-3d82-4468-84a6-a0eab118d27d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:40:33 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3d74d550-82e3-4921-aae9-426b95d1e06f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2c051cee-a49b-4ada-914d-0d551b125661" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154049Z:2c051cee-a49b-4ada-914d-0d551b125661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:40:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9f659be3-a684-46e4-83ca-ea04b607dfb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-correlation-request-id": [ + "cddbf9ce-eb80-4646-bbaf-279c4d4b6d42" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154105Z:cddbf9ce-eb80-4646-bbaf-279c4d4b6d42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:41:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d4f757f9-06c2-4586-872d-06d0d8c420b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-correlation-request-id": [ + "4c534179-6526-4be3-9e97-cb8333ca67e4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154120Z:4c534179-6526-4be3-9e97-cb8333ca67e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:41:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "835251a7-3fe6-4c34-8e83-e34639b01107" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-correlation-request-id": [ + "04c744b4-7d7a-47f9-a417-3ba46342d8d9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154135Z:04c744b4-7d7a-47f9-a417-3ba46342d8d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:41:34 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "25beca6e-2bd3-4a0c-9eaf-14c9dfdab771" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-correlation-request-id": [ + "d97554c1-9439-4535-868c-22f2ff387b28" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154150Z:d97554c1-9439-4535-868c-22f2ff387b28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:41:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2b281aae-0c1f-4197-b30f-29992d4ca427" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-correlation-request-id": [ + "6dcf69f4-d669-479b-a291-0935c84f9f56" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154206Z:6dcf69f4-d669-479b-a291-0935c84f9f56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:42:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b0766b6b-9408-4592-9723-122f97c4bd2b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-correlation-request-id": [ + "bd1792a1-9dbd-4637-9ebf-85379f04fcbd" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154221Z:bd1792a1-9dbd-4637-9ebf-85379f04fcbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:42:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2b7ee150-8eef-4f83-a4b0-33992aeb34bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-correlation-request-id": [ + "7e524897-e99b-4b71-b719-c689721e67da" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154236Z:7e524897-e99b-4b71-b719-c689721e67da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:42:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "33b3865d-ef0e-4418-9074-5360aa67d9fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-correlation-request-id": [ + "6dfc284b-baa4-46c4-ae11-02e9cf81f8d7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154251Z:6dfc284b-baa4-46c4-ae11-02e9cf81f8d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:42:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3668d404-fbd5-427b-af76-9dc450d97718" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-correlation-request-id": [ + "f04c7d54-8b64-4c2f-b6a1-2a69fd93eda9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154306Z:f04c7d54-8b64-4c2f-b6a1-2a69fd93eda9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:43:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a705fe1f-7b09-4c20-8628-b9003f1b53fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-correlation-request-id": [ + "b2c36e17-7d81-406a-ad56-c3f4d99f73a0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154322Z:b2c36e17-7d81-406a-ad56-c3f4d99f73a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:43:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fc22b475-36c6-486a-98b0-2aa4d97ecbc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-correlation-request-id": [ + "877bd64b-2644-447b-81a3-380e3d33a882" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154337Z:877bd64b-2644-447b-81a3-380e3d33a882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:43:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a5e756b8-3866-4efa-bdbd-92a0d9a6823c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-correlation-request-id": [ + "4afdfe82-5165-40f1-abe5-522efe2e3f56" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154352Z:4afdfe82-5165-40f1-abe5-522efe2e3f56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:43:51 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "93aeec14-0f9c-4aa0-bba1-6ddd4ea374c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3ab8a9b8-cc86-40ce-a774-9fd37cd4ef7e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154407Z:3ab8a9b8-cc86-40ce-a774-9fd37cd4ef7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:44:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c18cb75b-1cdf-40a7-8922-46c6272317df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-correlation-request-id": [ + "1b64ca67-c20e-4f55-8a4f-1ba70ca7abeb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154423Z:1b64ca67-c20e-4f55-8a4f-1ba70ca7abeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:44:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7d51ad0b-6bb3-4b7e-8043-e7aa645e79ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-correlation-request-id": [ + "02bc39be-5b8a-4828-a206-631fdc4e7d20" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154438Z:02bc39be-5b8a-4828-a206-631fdc4e7d20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:44:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "344d0985-7de0-4d16-aee0-dede3aaac546" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-correlation-request-id": [ + "a466400c-df1d-4d65-afe7-e6e69032754b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154453Z:a466400c-df1d-4d65-afe7-e6e69032754b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:44:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "83fccfa6-6dc6-4857-a200-be1a615eb59b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-correlation-request-id": [ + "569d003c-29f2-428c-a46b-6f9630b6bfc4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154508Z:569d003c-29f2-428c-a46b-6f9630b6bfc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:45:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "073d91e4-9da9-485d-8ecb-a5cb125c22dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "89184333-f1fb-42e4-a256-1d6a23535b3a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154523Z:89184333-f1fb-42e4-a256-1d6a23535b3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:45:23 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b99f66c5-db8f-4c29-bcc1-ddd15275fb73" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-correlation-request-id": [ + "ac021815-0e9b-4117-9c85-fa3b5b310dea" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154539Z:ac021815-0e9b-4117-9c85-fa3b5b310dea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:45:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "97fcd4ea-d309-477d-8285-5e8e308234a1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-correlation-request-id": [ + "1e1a8dc3-bca8-4444-aba3-af6513aa0476" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154554Z:1e1a8dc3-bca8-4444-aba3-af6513aa0476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:45:53 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b08211a5-e356-4470-aa41-f481e7d35e11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-correlation-request-id": [ + "bbdd6075-d94c-41c4-9c81-fc19f27a86da" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154609Z:bbdd6075-d94c-41c4-9c81-fc19f27a86da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:46:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3f49dd71-32cc-40cd-947b-ec1596372efc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-correlation-request-id": [ + "458644e3-1ed0-4c13-ab2a-950bc157d04a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154624Z:458644e3-1ed0-4c13-ab2a-950bc157d04a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:46:24 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3baa93e8-def3-4655-adfb-4595e1d18e21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4d3bd2ab-2c6b-4a61-b254-82f5c7bfb227" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154639Z:4d3bd2ab-2c6b-4a61-b254-82f5c7bfb227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:46:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "65de88e2-6440-454d-af52-e8b726cb6525" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-correlation-request-id": [ + "50e6a6da-059b-4063-b240-19ffd9f126fd" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154655Z:50e6a6da-059b-4063-b240-19ffd9f126fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:46:54 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ce9cfcb3-9415-4fd5-98cd-460bbd073ce9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-correlation-request-id": [ + "6b7f9807-02c3-4c4d-800d-897a8926bc84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154710Z:6b7f9807-02c3-4c4d-800d-897a8926bc84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:47:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e7f7416b-f333-4811-ac80-ac958958d24e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-correlation-request-id": [ + "7fee3f1d-32da-49fd-88a6-737d8cea9f99" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154725Z:7fee3f1d-32da-49fd-88a6-737d8cea9f99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:47:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "30d94d12-99b7-48ef-bfa6-f73a37bdf16c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-correlation-request-id": [ + "0a2fb489-827e-4796-9da7-8b8c31cb91b2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154741Z:0a2fb489-827e-4796-9da7-8b8c31cb91b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:47:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a3160d84-6a70-450f-a02d-843dfa7f9164" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-correlation-request-id": [ + "42b1946e-221c-4ea7-9719-682d9ab13e3e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154756Z:42b1946e-221c-4ea7-9719-682d9ab13e3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:47:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8ff3e156-15a3-4be6-99ef-1248df75f35c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-correlation-request-id": [ + "4c47f834-5bdb-49ec-a9b3-69175c58ee7e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154811Z:4c47f834-5bdb-49ec-a9b3-69175c58ee7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:48:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterAzureAsyncOperation/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyQXp1cmVBc3luY09wZXJhdGlvbi8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "13bb5ad4-21f2-4225-8f12-67802e675114" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-correlation-request-id": [ + "a06f472c-c0b1-4660-8ff9-658eed4679fe" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154826Z:a06f472c-c0b1-4660-8ff9-658eed4679fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:48:26 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"088bb8dc-ea14-4494-86c5-cd973948693a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-20T14:43:23.877Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/rg_miplayground/providers/Microsoft.Sql/locations/eastus/virtualClusterOperationResults/088bb8dc-ea14-4494-86c5-cd973948693a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3JnX21pcGxheWdyb3VuZC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3ZpcnR1YWxDbHVzdGVyT3BlcmF0aW9uUmVzdWx0cy8wODhiYjhkYy1lYTE0LTQ0OTQtODZjNS1jZDk3Mzk0ODY5M2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.28.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2385489a-2d62-48df-a56f-f395a49c5ba2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-correlation-request-id": [ + "e7e883db-66cd-49e1-90f9-48eb91b23e79" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190320T154827Z:e7e883db-66cd-49e1-90f9-48eb91b23e79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 20 Mar 2019 15:48:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "a8c9a924-06c0-4bde-9788-e7b1370969e1" + } +} \ No newline at end of file diff --git a/src/SDKs/SqlManagement/Sql.Tests/VirtualClusterCrudScenarioTests.cs b/src/SDKs/SqlManagement/Sql.Tests/VirtualClusterCrudScenarioTests.cs new file mode 100644 index 000000000000..88175b849818 --- /dev/null +++ b/src/SDKs/SqlManagement/Sql.Tests/VirtualClusterCrudScenarioTests.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System.Collections.Generic; +using System.Linq; +using Xunit; + +namespace Sql.Tests +{ + public class VirtualClusterCrudScenarioTests + { + [Fact] + public void TestCreateGetDeleteVirtualCluster() + { + using (SqlManagementTestContext context = new SqlManagementTestContext(this)) + { + string resourceGroupName = "RG_MIPlayground"; + SqlManagementClient sqlClient = context.GetClient(); + + string managedInstanceName = "sqlcl-vccrudtests-dotnetsdk1"; + string login = "dummylogin"; + string password = "Un53cuRE!Pa$$w0rd1"; + Dictionary tags = new Dictionary() + { + { "tagKey1", "TagValue1" } + }; + + Microsoft.Azure.Management.Sql.Models.Sku sku = new Microsoft.Azure.Management.Sql.Models.Sku(); + sku.Name = "MIGP8G4"; + sku.Tier = "GeneralPurpose"; + sku.Family = "Gen4"; + + string subnetId = "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/RG_MIPlayground/providers/Microsoft.Network/virtualNetworks/VNET_MIPlayground/subnets/VCReservedSubnet"; + string location = "eastus"; + + //Create server + var managedInstance = sqlClient.ManagedInstances.CreateOrUpdate(resourceGroupName, managedInstanceName, new ManagedInstance() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + Sku = sku, + SubnetId = subnetId, + Tags = tags, + Location = location, + }); + SqlManagementTestUtilities.ValidateManagedInstance(managedInstance, managedInstanceName, login, tags, location); + + // Get and verify Virtual cluster + var virtualClusters = sqlClient.VirtualClusters.List(); + Assert.True(virtualClusters.Count() > 0); + var virtualCluster = virtualClusters.Single(vc => vc.SubnetId == subnetId); + Assert.Equal(location, virtualCluster.Location, ignoreCase: true); + string virtualClusterName = virtualCluster.Name; + virtualCluster = sqlClient.VirtualClusters.ListByResourceGroup(resourceGroupName).Single(vc => vc.SubnetId == subnetId); + Assert.Equal(location, virtualCluster.Location, ignoreCase: true); + Assert.Equal(virtualClusterName, virtualCluster.Name); + virtualCluster = sqlClient.VirtualClusters.Get(resourceGroupName, virtualClusterName); + Assert.Equal(location, virtualCluster.Location, ignoreCase: true); + Assert.Equal(virtualClusterName, virtualCluster.Name); + Assert.Equal(subnetId, virtualCluster.SubnetId); + + // Drop managed server + sqlClient.ManagedInstances.Delete(resourceGroupName, managedInstanceName); + + // Delete Virtual Cluster + sqlClient.VirtualClusters.Delete(resourceGroupName, virtualClusterName); + Assert.Throws(() => sqlClient.VirtualClusters.Get(resourceGroupName, virtualClusterName)); + } + } + } +} diff --git a/src/SDKs/_metadata/sql_resource-manager.txt b/src/SDKs/_metadata/sql_resource-manager.txt index 7e000abbbdf1..ead137012964 100644 --- a/src/SDKs/_metadata/sql_resource-manager.txt +++ b/src/SDKs/_metadata/sql_resource-manager.txt @@ -1,14 +1,14 @@ -Installing AutoRest version: latest +Installing AutoRest version: latest AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\Code\azure-sdk-for-net\src\SDKs -2019-02-11 22:12:45 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\Enlist\Git\azure-sdk-for-net\src\SDKs +2019-03-15 16:07:15 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: db312deaed90e5fb397fa5a1456d35b9ed4bfc19 +Commit: 34ec12b92ffb40aec651bc5b37650b98e318333f AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283