From 301ee95433e1a22b3db29737d70e5675f2a1a787 Mon Sep 17 00:00:00 2001 From: "Djordje Nisic (E-Search)" Date: Mon, 5 Nov 2018 15:59:27 +0100 Subject: [PATCH] Support for short term retention on managed databases --- .../SDKs/_metadata/sql_resource-manager.txt | 14 + ...abaseVulnerabilityAssessmentsOperations.cs | 382 +- ...rabilityAssessmentsOperationsExtensions.cs | 84 + ...abaseVulnerabilityAssessmentsOperations.cs | 55 + ...kupShortTermRetentionPoliciesOperations.cs | 241 + ...abaseVulnerabilityAssessmentsOperations.cs | 53 + .../Generated/ISqlManagementClient.cs | 5 + ...kupShortTermRetentionPoliciesOperations.cs | 1138 ++ ...rmRetentionPoliciesOperationsExtensions.cs | 371 + ...abaseVulnerabilityAssessmentsOperations.cs | 381 +- ...rabilityAssessmentsOperationsExtensions.cs | 82 + .../Models/BackupLongTermRetentionPolicy.cs | 4 +- .../Models/DatabaseBlobAuditingPolicy.cs | 68 +- .../Models/DatabaseVulnerabilityAssessment.cs | 39 +- .../ExtendedDatabaseBlobAuditingPolicy.cs | 68 +- .../ExtendedServerBlobAuditingPolicy.cs | 68 +- .../ManagedBackupShortTermRetentionPolicy.cs | 63 + .../Models/ServerBlobAuditingPolicy.cs | 68 +- .../Generated/SdkInfo_SqlManagementClient.cs | 12 +- .../Generated/SqlManagementClient.cs | 6 + .../Microsoft.Azure.Management.Sql.csproj | 4 +- .../Management.Sql/Properties/AssemblyInfo.cs | 2 +- .../ManagedDatabaseRestoreScenarioTests.cs | 82 + .../Sql.Tests/ManagedInstanceTestFixture.cs | 2 +- .../ShortTermRetentionOnLiveDatabase.json | 11502 ++++++++++++++++ 25 files changed, 14701 insertions(+), 93 deletions(-) create mode 100644 src/SDKs/SDKs/_metadata/sql_resource-manager.txt create mode 100644 src/SDKs/SqlManagement/Management.Sql/Generated/IManagedBackupShortTermRetentionPoliciesOperations.cs create mode 100644 src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperations.cs create mode 100644 src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperationsExtensions.cs create mode 100644 src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedBackupShortTermRetentionPolicy.cs create mode 100644 src/SDKs/SqlManagement/Sql.Tests/ManagedDatabaseRestoreScenarioTests.cs create mode 100644 src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedDatabaseRestoreScenarioTests/ShortTermRetentionOnLiveDatabase.json diff --git a/src/SDKs/SDKs/_metadata/sql_resource-manager.txt b/src/SDKs/SDKs/_metadata/sql_resource-manager.txt new file mode 100644 index 000000000000..4bd789f299e2 --- /dev/null +++ b/src/SDKs/SDKs/_metadata/sql_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: latest +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/v-djnisi/azure-rest-api-specs/blob/readread/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\azure-sdk-for-net\src\SDKs +2018-11-05 14:53:22 UTC +Azure-rest-api-specs repository information +GitHub fork: v-djnisi +Branch: readread +Commit: f848336966752760cd1c49a97a4edc29d710bc17 +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperations.cs index 836e27f47309..1b1ced93379f 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperations.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperations.cs @@ -312,10 +312,6 @@ internal DatabaseVulnerabilityAssessmentsOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -686,5 +682,383 @@ internal DatabaseVulnerabilityAssessmentsOperations(SqlManagementClient client) return _result; } + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// 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 server. + /// + /// + /// The name of the database for which the vulnerability assessment policies + /// are defined. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-03-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("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByDatabase", 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/servers/{serverName}/databases/{databaseName}/vulnerabilityAssessments").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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; + } + + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(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, "ListByDatabaseNext", 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/DatabaseVulnerabilityAssessmentsOperationsExtensions.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperationsExtensions.cs index 264fd66ee33c..9e4bcc9d93d0 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperationsExtensions.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/DatabaseVulnerabilityAssessmentsOperationsExtensions.cs @@ -168,5 +168,89 @@ public static void Delete(this IDatabaseVulnerabilityAssessmentsOperations opera (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// 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 server. + /// + /// + /// The name of the database for which the vulnerability assessment policies + /// are defined. + /// + public static IPage ListByDatabase(this IDatabaseVulnerabilityAssessmentsOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.ListByDatabaseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// 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 server. + /// + /// + /// The name of the database for which the vulnerability assessment policies + /// are defined. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseAsync(this IDatabaseVulnerabilityAssessmentsOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByDatabaseNext(this IDatabaseVulnerabilityAssessmentsOperations operations, string nextPageLink) + { + return operations.ListByDatabaseNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the vulnerability assessment policies associated with a database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseNextAsync(this IDatabaseVulnerabilityAssessmentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/IDatabaseVulnerabilityAssessmentsOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/IDatabaseVulnerabilityAssessmentsOperations.cs index 1e4aa09b2be5..d36fea878f14 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/IDatabaseVulnerabilityAssessmentsOperations.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/IDatabaseVulnerabilityAssessmentsOperations.cs @@ -116,5 +116,60 @@ public partial interface IDatabaseVulnerabilityAssessmentsOperations /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the vulnerability assessment policies associated with a + /// database. + /// + /// + /// 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 server. + /// + /// + /// The name of the database for which the vulnerability assessment + /// policies are defined. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the vulnerability assessment policies associated with a + /// database. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedBackupShortTermRetentionPoliciesOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedBackupShortTermRetentionPoliciesOperations.cs new file mode 100644 index 000000000000..d2c4645d7d8a --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedBackupShortTermRetentionPoliciesOperations.cs @@ -0,0 +1,241 @@ +// +// 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; + + /// + /// ManagedBackupShortTermRetentionPoliciesOperations operations. + /// + public partial interface IManagedBackupShortTermRetentionPoliciesOperations + { + /// + /// Gets a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// 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 managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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 managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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 managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedDatabaseVulnerabilityAssessmentsOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedDatabaseVulnerabilityAssessmentsOperations.cs index 57d13fad2140..8799fc509995 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedDatabaseVulnerabilityAssessmentsOperations.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/IManagedDatabaseVulnerabilityAssessmentsOperations.cs @@ -116,5 +116,58 @@ public partial interface IManagedDatabaseVulnerabilityAssessmentsOperations /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database for which the vulnerability assessment is + /// defined. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs index 0f6a144dbd44..ef5a02b954af 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ISqlManagementClient.cs @@ -322,6 +322,11 @@ public partial interface ISqlManagementClient : System.IDisposable /// IBackupLongTermRetentionPoliciesOperations BackupLongTermRetentionPolicies { get; } + /// + /// Gets the IManagedBackupShortTermRetentionPoliciesOperations. + /// + IManagedBackupShortTermRetentionPoliciesOperations ManagedBackupShortTermRetentionPolicies { get; } + /// /// Gets the IManagedDatabasesOperations. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperations.cs new file mode 100644 index 000000000000..e61053122762 --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperations.cs @@ -0,0 +1,1138 @@ +// +// 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; + + /// + /// ManagedBackupShortTermRetentionPoliciesOperations operations. + /// + internal partial class ManagedBackupShortTermRetentionPoliciesOperations : IServiceOperations, IManagedBackupShortTermRetentionPoliciesOperations + { + /// + /// Initializes a new instance of the ManagedBackupShortTermRetentionPoliciesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ManagedBackupShortTermRetentionPoliciesOperations(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 managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// 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 managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string policyName = "default"; + string apiVersion = "2017-03-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("managedInstanceName", managedInstanceName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("policyName", policyName); + 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/managedInstances/{managedInstanceName}/databases/{databaseName}/backupShortTermRetentionPolicies/{policyName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{policyName}", System.Uri.EscapeDataString(policyName)); + _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; + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-03-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("managedInstanceName", managedInstanceName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByDatabase", 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/managedInstances/{managedInstanceName}/databases/{databaseName}/backupShortTermRetentionPolicies").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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; + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string policyName = "default"; + string apiVersion = "2017-03-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("managedInstanceName", managedInstanceName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("policyName", policyName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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/managedInstances/{managedInstanceName}/databases/{databaseName}/backupShortTermRetentionPolicies/{policyName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{policyName}", System.Uri.EscapeDataString(policyName)); + _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("PUT"); + _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; + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// 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 managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string policyName = "default"; + string apiVersion = "2017-03-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("managedInstanceName", managedInstanceName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("policyName", policyName); + 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/managedInstances/{managedInstanceName}/databases/{databaseName}/backupShortTermRetentionPolicies/{policyName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{policyName}", System.Uri.EscapeDataString(policyName)); + _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 managed database's short term retention policy list. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(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, "ListByDatabaseNext", 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/ManagedBackupShortTermRetentionPoliciesOperationsExtensions.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperationsExtensions.cs new file mode 100644 index 000000000000..dc73e9a14c82 --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedBackupShortTermRetentionPoliciesOperationsExtensions.cs @@ -0,0 +1,371 @@ +// +// 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 ManagedBackupShortTermRetentionPoliciesOperations. + /// + public static partial class ManagedBackupShortTermRetentionPoliciesOperationsExtensions + { + /// + /// Gets a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + public static ManagedBackupShortTermRetentionPolicy Get(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName) + { + return operations.GetAsync(resourceGroupName, managedInstanceName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + public static ManagedBackupShortTermRetentionPolicy CreateOrUpdate(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, managedInstanceName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + public static ManagedBackupShortTermRetentionPolicy Update(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters) + { + return operations.UpdateAsync(resourceGroupName, managedInstanceName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + public static IPage ListByDatabase(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName) + { + return operations.ListByDatabaseAsync(resourceGroupName, managedInstanceName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + public static ManagedBackupShortTermRetentionPolicy BeginCreateOrUpdate(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, managedInstanceName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + public static ManagedBackupShortTermRetentionPolicy BeginUpdate(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, managedInstanceName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a managed database's short term retention policy. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database. + /// + /// + /// The short term retention policy info. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, ManagedBackupShortTermRetentionPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByDatabaseNext(this IManagedBackupShortTermRetentionPoliciesOperations operations, string nextPageLink) + { + return operations.ListByDatabaseNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a managed database's short term retention policy list. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseNextAsync(this IManagedBackupShortTermRetentionPoliciesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperations.cs index eaa991e487c5..eb9d3a9926a4 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperations.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperations.cs @@ -312,10 +312,6 @@ internal ManagedDatabaseVulnerabilityAssessmentsOperations(SqlManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -686,5 +682,382 @@ internal ManagedDatabaseVulnerabilityAssessmentsOperations(SqlManagementClient c return _result; } + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database for which the vulnerability assessment is defined. + /// + /// + /// 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>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-10-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("managedInstanceName", managedInstanceName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByDatabase", 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/managedInstances/{managedInstanceName}/databases/{databaseName}/vulnerabilityAssessments").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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; + } + + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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>> ListByDatabaseNextWithHttpMessagesAsync(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, "ListByDatabaseNext", 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/ManagedDatabaseVulnerabilityAssessmentsOperationsExtensions.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperationsExtensions.cs index e77dcad2e83d..27b02e268b46 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperationsExtensions.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/ManagedDatabaseVulnerabilityAssessmentsOperationsExtensions.cs @@ -168,5 +168,87 @@ public static void Delete(this IManagedDatabaseVulnerabilityAssessmentsOperation (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database for which the vulnerability assessment is defined. + /// + public static IPage ListByDatabase(this IManagedDatabaseVulnerabilityAssessmentsOperations operations, string resourceGroupName, string managedInstanceName, string databaseName) + { + return operations.ListByDatabaseAsync(resourceGroupName, managedInstanceName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// 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 managed instance. + /// + /// + /// The name of the database for which the vulnerability assessment is defined. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseAsync(this IManagedDatabaseVulnerabilityAssessmentsOperations operations, string resourceGroupName, string managedInstanceName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseWithHttpMessagesAsync(resourceGroupName, managedInstanceName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByDatabaseNext(this IManagedDatabaseVulnerabilityAssessmentsOperations operations, string nextPageLink) + { + return operations.ListByDatabaseNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the vulnerability assessments of a managed database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByDatabaseNextAsync(this IManagedDatabaseVulnerabilityAssessmentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByDatabaseNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/BackupLongTermRetentionPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/BackupLongTermRetentionPolicy.cs index 43051e005775..6de249dd2497 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/BackupLongTermRetentionPolicy.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/BackupLongTermRetentionPolicy.cs @@ -39,7 +39,7 @@ public BackupLongTermRetentionPolicy() /// Resource type. /// The weekly retention policy for an /// LTR backup in an ISO 8601 format. - /// The montly retention policy for an + /// The monthly retention policy for an /// LTR backup in an ISO 8601 format. /// The yearly retention policy for an /// LTR backup in an ISO 8601 format. @@ -68,7 +68,7 @@ public BackupLongTermRetentionPolicy() public string WeeklyRetention { get; set; } /// - /// Gets or sets the montly retention policy for an LTR backup in an + /// Gets or sets the monthly retention policy for an LTR backup in an /// ISO 8601 format. /// [JsonProperty(PropertyName = "properties.monthlyRetention")] diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs index dd9a1e238e67..cccaa096f7eb 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs @@ -35,8 +35,8 @@ public DatabaseBlobAuditingPolicy() /// Initializes a new instance of the DatabaseBlobAuditingPolicy class. /// /// Specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// Resource ID. /// Resource name. /// Resource type. @@ -45,10 +45,11 @@ public DatabaseBlobAuditingPolicy() /// (e.g. https://MyAccount.blob.core.windows.net). If state is /// Enabled, storageEndpoint is required. /// Specifies the identifier key - /// of the auditing storage account. If state is Enabled, - /// storageAccountAccessKey is required. + /// of the auditing storage account. If state is Enabled and + /// storageEndpoint is specified, storageAccountAccessKey is + /// required. /// Specifies the number of days to keep in - /// the audit logs. + /// the audit logs in the storage account. /// Specifies the Actions-Groups /// and Actions to audit. /// @@ -128,7 +129,26 @@ public DatabaseBlobAuditingPolicy() /// Specifies whether /// storageAccountAccessKey value is the storage's secondary /// key. - public DatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string kind = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?)) + /// Specifies whether audit + /// events are sent to Azure Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as <databaseName>. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Sql/servers/<serverName>/databases/<databaseName>/providers/microsoft.insights/diagnosticSettings/<settingsName>?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + public DatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string kind = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?), bool? isAzureMonitorTargetEnabled = default(bool?)) : base(id, name, type) { Kind = kind; @@ -139,6 +159,7 @@ public DatabaseBlobAuditingPolicy() AuditActionsAndGroups = auditActionsAndGroups; StorageAccountSubscriptionId = storageAccountSubscriptionId; IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + IsAzureMonitorTargetEnabled = isAzureMonitorTargetEnabled; CustomInit(); } @@ -155,8 +176,8 @@ public DatabaseBlobAuditingPolicy() /// /// Gets or sets specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] public BlobAuditingPolicyState State { get; set; } @@ -171,14 +192,15 @@ public DatabaseBlobAuditingPolicy() /// /// Gets or sets specifies the identifier key of the auditing storage - /// account. If state is Enabled, storageAccountAccessKey is required. + /// account. If state is Enabled and storageEndpoint is specified, + /// storageAccountAccessKey is required. /// [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] public string StorageAccountAccessKey { get; set; } /// - /// Gets or sets specifies the number of days to keep in the audit - /// logs. + /// Gets or sets specifies the number of days to keep in the audit logs + /// in the storage account. /// [JsonProperty(PropertyName = "properties.retentionDays")] public int? RetentionDays { get; set; } @@ -276,6 +298,30 @@ public DatabaseBlobAuditingPolicy() [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] public bool? IsStorageSecondaryKeyInUse { get; set; } + /// + /// Gets or sets specifies whether audit events are sent to Azure + /// Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as &lt;databaseName&gt;. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/&lt;subscriptionId&gt;/resourceGroups/&lt;resourceGroup&gt;/providers/Microsoft.Sql/servers/&lt;serverName&gt;/databases/&lt;databaseName&gt;/providers/microsoft.insights/diagnosticSettings/&lt;settingsName&gt;?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + /// + [JsonProperty(PropertyName = "properties.isAzureMonitorTargetEnabled")] + public bool? IsAzureMonitorTargetEnabled { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseVulnerabilityAssessment.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseVulnerabilityAssessment.cs index 0a3373ab3124..0fcc79220867 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseVulnerabilityAssessment.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseVulnerabilityAssessment.cs @@ -34,22 +34,23 @@ public DatabaseVulnerabilityAssessment() /// Initializes a new instance of the DatabaseVulnerabilityAssessment /// class. /// - /// A blob storage container path to - /// hold the scan results (e.g. - /// https://myStorage.blob.core.windows.net/VaScans/). /// Resource ID. /// Resource name. /// Resource type. + /// A blob storage container path to + /// hold the scan results (e.g. + /// https://myStorage.blob.core.windows.net/VaScans/). It is required + /// if server level vulnerability assessment policy doesn't set /// A shared access signature (SAS /// Key) that has write access to the blob container specified in /// 'storageContainerPath' parameter. If 'storageAccountAccessKey' /// isn't specified, StorageContainerSasKey is required. /// Specifies the identifier key - /// of the vulnerability assessment storage account. If - /// 'StorageContainerSasKey' isn't specified, storageAccountAccessKey - /// is required. + /// of the storage account for vulnerability assessment scan results. + /// If 'StorageContainerSasKey' isn't specified, + /// storageAccountAccessKey is required. /// The recurring scans settings - public DatabaseVulnerabilityAssessment(string storageContainerPath, string id = default(string), string name = default(string), string type = default(string), string storageContainerSasKey = default(string), string storageAccountAccessKey = default(string), VulnerabilityAssessmentRecurringScansProperties recurringScans = default(VulnerabilityAssessmentRecurringScansProperties)) + public DatabaseVulnerabilityAssessment(string id = default(string), string name = default(string), string type = default(string), string storageContainerPath = default(string), string storageContainerSasKey = default(string), string storageAccountAccessKey = default(string), VulnerabilityAssessmentRecurringScansProperties recurringScans = default(VulnerabilityAssessmentRecurringScansProperties)) : base(id, name, type) { StorageContainerPath = storageContainerPath; @@ -66,7 +67,9 @@ public DatabaseVulnerabilityAssessment() /// /// Gets or sets a blob storage container path to hold the scan results - /// (e.g. https://myStorage.blob.core.windows.net/VaScans/). + /// (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is + /// required if server level vulnerability assessment policy doesn't + /// set /// [JsonProperty(PropertyName = "properties.storageContainerPath")] public string StorageContainerPath { get; set; } @@ -81,9 +84,10 @@ public DatabaseVulnerabilityAssessment() public string StorageContainerSasKey { get; set; } /// - /// Gets or sets specifies the identifier key of the vulnerability - /// assessment storage account. If 'StorageContainerSasKey' isn't - /// specified, storageAccountAccessKey is required. + /// Gets or sets specifies the identifier key of the storage account + /// for vulnerability assessment scan results. If + /// 'StorageContainerSasKey' isn't specified, storageAccountAccessKey + /// is required. /// [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] public string StorageAccountAccessKey { get; set; } @@ -94,18 +98,5 @@ public DatabaseVulnerabilityAssessment() [JsonProperty(PropertyName = "properties.recurringScans")] public VulnerabilityAssessmentRecurringScansProperties RecurringScans { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (StorageContainerPath == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "StorageContainerPath"); - } - } } } diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedDatabaseBlobAuditingPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedDatabaseBlobAuditingPolicy.cs index e8bae07199d8..149baac1267f 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedDatabaseBlobAuditingPolicy.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedDatabaseBlobAuditingPolicy.cs @@ -37,8 +37,8 @@ public ExtendedDatabaseBlobAuditingPolicy() /// ExtendedDatabaseBlobAuditingPolicy class. /// /// Specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// Resource ID. /// Resource name. /// Resource type. @@ -48,10 +48,11 @@ public ExtendedDatabaseBlobAuditingPolicy() /// (e.g. https://MyAccount.blob.core.windows.net). If state is /// Enabled, storageEndpoint is required. /// Specifies the identifier key - /// of the auditing storage account. If state is Enabled, - /// storageAccountAccessKey is required. + /// of the auditing storage account. If state is Enabled and + /// storageEndpoint is specified, storageAccountAccessKey is + /// required. /// Specifies the number of days to keep in - /// the audit logs. + /// the audit logs in the storage account. /// Specifies the Actions-Groups /// and Actions to audit. /// @@ -131,7 +132,26 @@ public ExtendedDatabaseBlobAuditingPolicy() /// Specifies whether /// storageAccountAccessKey value is the storage's secondary /// key. - public ExtendedDatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string predicateExpression = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?)) + /// Specifies whether audit + /// events are sent to Azure Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as <databaseName>. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Sql/servers/<serverName>/databases/<databaseName>/providers/microsoft.insights/diagnosticSettings/<settingsName>?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + public ExtendedDatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string predicateExpression = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?), bool? isAzureMonitorTargetEnabled = default(bool?)) : base(id, name, type) { PredicateExpression = predicateExpression; @@ -142,6 +162,7 @@ public ExtendedDatabaseBlobAuditingPolicy() AuditActionsAndGroups = auditActionsAndGroups; StorageAccountSubscriptionId = storageAccountSubscriptionId; IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + IsAzureMonitorTargetEnabled = isAzureMonitorTargetEnabled; CustomInit(); } @@ -159,8 +180,8 @@ public ExtendedDatabaseBlobAuditingPolicy() /// /// Gets or sets specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] public BlobAuditingPolicyState State { get; set; } @@ -175,14 +196,15 @@ public ExtendedDatabaseBlobAuditingPolicy() /// /// Gets or sets specifies the identifier key of the auditing storage - /// account. If state is Enabled, storageAccountAccessKey is required. + /// account. If state is Enabled and storageEndpoint is specified, + /// storageAccountAccessKey is required. /// [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] public string StorageAccountAccessKey { get; set; } /// - /// Gets or sets specifies the number of days to keep in the audit - /// logs. + /// Gets or sets specifies the number of days to keep in the audit logs + /// in the storage account. /// [JsonProperty(PropertyName = "properties.retentionDays")] public int? RetentionDays { get; set; } @@ -280,6 +302,30 @@ public ExtendedDatabaseBlobAuditingPolicy() [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] public bool? IsStorageSecondaryKeyInUse { get; set; } + /// + /// Gets or sets specifies whether audit events are sent to Azure + /// Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as &lt;databaseName&gt;. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/&lt;subscriptionId&gt;/resourceGroups/&lt;resourceGroup&gt;/providers/Microsoft.Sql/servers/&lt;serverName&gt;/databases/&lt;databaseName&gt;/providers/microsoft.insights/diagnosticSettings/&lt;settingsName&gt;?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + /// + [JsonProperty(PropertyName = "properties.isAzureMonitorTargetEnabled")] + public bool? IsAzureMonitorTargetEnabled { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedServerBlobAuditingPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedServerBlobAuditingPolicy.cs index 5d31112d2f51..d766938c8583 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedServerBlobAuditingPolicy.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ExtendedServerBlobAuditingPolicy.cs @@ -37,8 +37,8 @@ public ExtendedServerBlobAuditingPolicy() /// class. /// /// Specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// Resource ID. /// Resource name. /// Resource type. @@ -48,10 +48,11 @@ public ExtendedServerBlobAuditingPolicy() /// (e.g. https://MyAccount.blob.core.windows.net). If state is /// Enabled, storageEndpoint is required. /// Specifies the identifier key - /// of the auditing storage account. If state is Enabled, - /// storageAccountAccessKey is required. + /// of the auditing storage account. If state is Enabled and + /// storageEndpoint is specified, storageAccountAccessKey is + /// required. /// Specifies the number of days to keep in - /// the audit logs. + /// the audit logs in the storage account. /// Specifies the Actions-Groups /// and Actions to audit. /// @@ -131,7 +132,26 @@ public ExtendedServerBlobAuditingPolicy() /// Specifies whether /// storageAccountAccessKey value is the storage's secondary /// key. - public ExtendedServerBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string predicateExpression = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?)) + /// Specifies whether audit + /// events are sent to Azure Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as <databaseName>. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Sql/servers/<serverName>/databases/<databaseName>/providers/microsoft.insights/diagnosticSettings/<settingsName>?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + public ExtendedServerBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string predicateExpression = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?), bool? isAzureMonitorTargetEnabled = default(bool?)) : base(id, name, type) { PredicateExpression = predicateExpression; @@ -142,6 +162,7 @@ public ExtendedServerBlobAuditingPolicy() AuditActionsAndGroups = auditActionsAndGroups; StorageAccountSubscriptionId = storageAccountSubscriptionId; IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + IsAzureMonitorTargetEnabled = isAzureMonitorTargetEnabled; CustomInit(); } @@ -159,8 +180,8 @@ public ExtendedServerBlobAuditingPolicy() /// /// Gets or sets specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] public BlobAuditingPolicyState State { get; set; } @@ -175,14 +196,15 @@ public ExtendedServerBlobAuditingPolicy() /// /// Gets or sets specifies the identifier key of the auditing storage - /// account. If state is Enabled, storageAccountAccessKey is required. + /// account. If state is Enabled and storageEndpoint is specified, + /// storageAccountAccessKey is required. /// [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] public string StorageAccountAccessKey { get; set; } /// - /// Gets or sets specifies the number of days to keep in the audit - /// logs. + /// Gets or sets specifies the number of days to keep in the audit logs + /// in the storage account. /// [JsonProperty(PropertyName = "properties.retentionDays")] public int? RetentionDays { get; set; } @@ -280,6 +302,30 @@ public ExtendedServerBlobAuditingPolicy() [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] public bool? IsStorageSecondaryKeyInUse { get; set; } + /// + /// Gets or sets specifies whether audit events are sent to Azure + /// Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as &lt;databaseName&gt;. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/&lt;subscriptionId&gt;/resourceGroups/&lt;resourceGroup&gt;/providers/Microsoft.Sql/servers/&lt;serverName&gt;/databases/&lt;databaseName&gt;/providers/microsoft.insights/diagnosticSettings/&lt;settingsName&gt;?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + /// + [JsonProperty(PropertyName = "properties.isAzureMonitorTargetEnabled")] + public bool? IsAzureMonitorTargetEnabled { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedBackupShortTermRetentionPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedBackupShortTermRetentionPolicy.cs new file mode 100644 index 000000000000..7603790fe4be --- /dev/null +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedBackupShortTermRetentionPolicy.cs @@ -0,0 +1,63 @@ +// +// 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.Linq; + + /// + /// A short term retention policy. + /// + [Rest.Serialization.JsonTransformation] + public partial class ManagedBackupShortTermRetentionPolicy : ProxyResource + { + /// + /// Initializes a new instance of the + /// ManagedBackupShortTermRetentionPolicy class. + /// + public ManagedBackupShortTermRetentionPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ManagedBackupShortTermRetentionPolicy class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// The backup retention period in days. + /// This is how many days Point-in-Time Restore will be + /// supported. + public ManagedBackupShortTermRetentionPolicy(string id = default(string), string name = default(string), string type = default(string), int? retentionDays = default(int?)) + : base(id, name, type) + { + RetentionDays = retentionDays; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the backup retention period in days. This is how many + /// days Point-in-Time Restore will be supported. + /// + [JsonProperty(PropertyName = "properties.retentionDays")] + public int? RetentionDays { get; set; } + + } +} diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerBlobAuditingPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerBlobAuditingPolicy.cs index e0f47ed4e760..0a0548c3b8ad 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerBlobAuditingPolicy.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerBlobAuditingPolicy.cs @@ -35,8 +35,8 @@ public ServerBlobAuditingPolicy() /// Initializes a new instance of the ServerBlobAuditingPolicy class. /// /// Specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// Resource ID. /// Resource name. /// Resource type. @@ -44,10 +44,11 @@ public ServerBlobAuditingPolicy() /// (e.g. https://MyAccount.blob.core.windows.net). If state is /// Enabled, storageEndpoint is required. /// Specifies the identifier key - /// of the auditing storage account. If state is Enabled, - /// storageAccountAccessKey is required. + /// of the auditing storage account. If state is Enabled and + /// storageEndpoint is specified, storageAccountAccessKey is + /// required. /// Specifies the number of days to keep in - /// the audit logs. + /// the audit logs in the storage account. /// Specifies the Actions-Groups /// and Actions to audit. /// @@ -127,7 +128,26 @@ public ServerBlobAuditingPolicy() /// Specifies whether /// storageAccountAccessKey value is the storage's secondary /// key. - public ServerBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?)) + /// Specifies whether audit + /// events are sent to Azure Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as <databaseName>. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Sql/servers/<serverName>/databases/<databaseName>/providers/microsoft.insights/diagnosticSettings/<settingsName>?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + public ServerBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), System.Guid? storageAccountSubscriptionId = default(System.Guid?), bool? isStorageSecondaryKeyInUse = default(bool?), bool? isAzureMonitorTargetEnabled = default(bool?)) : base(id, name, type) { State = state; @@ -137,6 +157,7 @@ public ServerBlobAuditingPolicy() AuditActionsAndGroups = auditActionsAndGroups; StorageAccountSubscriptionId = storageAccountSubscriptionId; IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + IsAzureMonitorTargetEnabled = isAzureMonitorTargetEnabled; CustomInit(); } @@ -147,8 +168,8 @@ public ServerBlobAuditingPolicy() /// /// Gets or sets specifies the state of the policy. If state is - /// Enabled, storageEndpoint and storageAccountAccessKey are required. - /// Possible values include: 'Enabled', 'Disabled' + /// Enabled, storageEndpoint or isAzureMonitorTargetEnabled are + /// required. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] public BlobAuditingPolicyState State { get; set; } @@ -163,14 +184,15 @@ public ServerBlobAuditingPolicy() /// /// Gets or sets specifies the identifier key of the auditing storage - /// account. If state is Enabled, storageAccountAccessKey is required. + /// account. If state is Enabled and storageEndpoint is specified, + /// storageAccountAccessKey is required. /// [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] public string StorageAccountAccessKey { get; set; } /// - /// Gets or sets specifies the number of days to keep in the audit - /// logs. + /// Gets or sets specifies the number of days to keep in the audit logs + /// in the storage account. /// [JsonProperty(PropertyName = "properties.retentionDays")] public int? RetentionDays { get; set; } @@ -268,6 +290,30 @@ public ServerBlobAuditingPolicy() [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] public bool? IsStorageSecondaryKeyInUse { get; set; } + /// + /// Gets or sets specifies whether audit events are sent to Azure + /// Monitor. + /// In order to send the events to Azure Monitor, specify 'State' as + /// 'Enabled' and 'IsAzureMonitorTargetEnabled' as true. + /// + /// When using REST API to configure auditing, Diagnostic Settings with + /// 'SQLSecurityAuditEvents' diagnostic logs category on the database + /// should be also created. + /// Note that for server level audit you should use the 'master' + /// database as &lt;databaseName&gt;. + /// Diagnostic Settings URI format: + /// PUT + /// https://management.azure.com/subscriptions/&lt;subscriptionId&gt;/resourceGroups/&lt;resourceGroup&gt;/providers/Microsoft.Sql/servers/&lt;serverName&gt;/databases/&lt;databaseName&gt;/providers/microsoft.insights/diagnosticSettings/&lt;settingsName&gt;?api-version=2017-05-01-preview + /// + /// For more information, see [Diagnostic Settings REST + /// API](https://go.microsoft.com/fwlink/?linkid=2033207) + /// or [Diagnostic Settings + /// PowerShell](https://go.microsoft.com/fwlink/?linkid=2033043) + /// + /// + [JsonProperty(PropertyName = "properties.isAzureMonitorTargetEnabled")] + public bool? IsAzureMonitorTargetEnabled { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs index 4a319a1d8b21..e187d310c4bb 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs @@ -56,6 +56,7 @@ public static IEnumerable> ApiInfo_SqlManagementCl new Tuple("Sql", "JobVersions", "2017-03-01-preview"), new Tuple("Sql", "Jobs", "2017-03-01-preview"), new Tuple("Sql", "LongTermRetentionBackups", "2017-03-01-preview"), + new Tuple("Sql", "ManagedBackupShortTermRetentionPolicies", "2017-03-01-preview"), new Tuple("Sql", "ManagedDatabaseVulnerabilityAssessmentRuleBaselines", "2017-10-01-preview"), new Tuple("Sql", "ManagedDatabaseVulnerabilityAssessmentScans", "2017-10-01-preview"), new Tuple("Sql", "ManagedDatabaseVulnerabilityAssessments", "2017-10-01-preview"), @@ -94,16 +95,5 @@ public static IEnumerable> ApiInfo_SqlManagementCl }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "latest"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; - public static readonly String AutoRestCmdExecuted = "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=C:\\Vs\\azure-sdk-for-net\\src\\SDKs"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "057f369f689d1476fe70b05a4b4ab4fd3e3d542a"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs index 2abc6ef7c056..0a1ae0f9a256 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs +++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs @@ -327,6 +327,11 @@ public partial class SqlManagementClient : ServiceClient, I /// public virtual IBackupLongTermRetentionPoliciesOperations BackupLongTermRetentionPolicies { get; private set; } + /// + /// Gets the IManagedBackupShortTermRetentionPoliciesOperations. + /// + public virtual IManagedBackupShortTermRetentionPoliciesOperations ManagedBackupShortTermRetentionPolicies { get; private set; } + /// /// Gets the IManagedDatabasesOperations. /// @@ -709,6 +714,7 @@ private void Initialize() JobVersions = new JobVersionsOperations(this); LongTermRetentionBackups = new LongTermRetentionBackupsOperations(this); BackupLongTermRetentionPolicies = new BackupLongTermRetentionPoliciesOperations(this); + ManagedBackupShortTermRetentionPolicies = new ManagedBackupShortTermRetentionPoliciesOperations(this); ManagedDatabases = new ManagedDatabasesOperations(this); ServerAutomaticTuning = new ServerAutomaticTuningOperations(this); ServerDnsAliases = new ServerDnsAliasesOperations(this); 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 ea36d6498ffb..15f665163ab3 100644 --- a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj +++ b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj @@ -7,12 +7,12 @@ Microsoft.Azure.Management.Sql Azure SQL Management SDK library Microsoft.Azure.Management.Sql - 1.22.0-preview + 1.23.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 2d97a57ffba2..d0f608d1feef 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.22.0.0")] +[assembly: AssemblyFileVersion("1.23.0.0")] diff --git a/src/SDKs/SqlManagement/Sql.Tests/ManagedDatabaseRestoreScenarioTests.cs b/src/SDKs/SqlManagement/Sql.Tests/ManagedDatabaseRestoreScenarioTests.cs new file mode 100644 index 000000000000..e57dd29f30ef --- /dev/null +++ b/src/SDKs/SqlManagement/Sql.Tests/ManagedDatabaseRestoreScenarioTests.cs @@ -0,0 +1,82 @@ +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Azure.Management.Network.Models; +using Sku = Microsoft.Azure.Management.Sql.Models.Sku; +using System; +using System.Collections.Generic; +using Xunit; + + +namespace Sql.Tests +{ + // More tests will be added here once we start working on RestorableDroppedDatabase clients + // + public class ManagedDatabaseRestoreScenarioTests + { + [Fact] + public void ShortTermRetentionOnLiveDatabase() + { + string testPrefix = "manageddatabaserestorescenariotest-"; + + using (SqlManagementTestContext Context = new SqlManagementTestContext(this)) + { + SqlManagementClient sqlClient = Context.GetClient(); + ResourceGroup resourceGroup = Context.CreateResourceGroup(); + + // Create vnet and get the subnet id + VirtualNetwork vnet = ManagedInstanceTestFixture.CreateVirtualNetwork(Context, resourceGroup, TestEnvironmentUtilities.DefaultLocationId); + + Sku sku = new Sku(); + sku.Name = "MIGP8G4"; + sku.Tier = "GeneralPurpose"; + ManagedInstance managedInstance = sqlClient.ManagedInstances.CreateOrUpdate(resourceGroup.Name, + testPrefix + SqlManagementTestUtilities.GenerateName(), new ManagedInstance() + { + AdministratorLogin = SqlManagementTestUtilities.DefaultLogin, + AdministratorLoginPassword = SqlManagementTestUtilities.DefaultPassword, + Sku = sku, + SubnetId = vnet.Subnets[0].Id, + Tags = new Dictionary(), + Location = TestEnvironmentUtilities.DefaultLocationId, + }); + + // Create managed database + // + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var db1 = sqlClient.ManagedDatabases.CreateOrUpdate(resourceGroup.Name, managedInstance.Name, dbName, new ManagedDatabase() + { + Location = managedInstance.Location, + }); + Assert.NotNull(db1); + + int basicRetention = 7; + int invalidValue = 3; + int validValue = 20; + + // Attempt to increase retention period to 7 days and verfiy that the operation succeeded. + ManagedBackupShortTermRetentionPolicy parameters0 = new ManagedBackupShortTermRetentionPolicy(retentionDays: basicRetention); + sqlClient.ManagedBackupShortTermRetentionPolicies.CreateOrUpdateWithHttpMessagesAsync(resourceGroup.Name, managedInstance.Name, dbName, parameters0); + Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities.Wait(TimeSpan.FromSeconds(3)); + ManagedBackupShortTermRetentionPolicy policy = sqlClient.ManagedBackupShortTermRetentionPolicies.Get(resourceGroup.Name, managedInstance.Name, dbName); + Assert.Equal(basicRetention, policy.RetentionDays); + + // Attempt to increase retention period to 3 days and verfiy that the operation fails. + ManagedBackupShortTermRetentionPolicy parameters1 = new ManagedBackupShortTermRetentionPolicy(retentionDays: invalidValue); + sqlClient.ManagedBackupShortTermRetentionPolicies.CreateOrUpdateWithHttpMessagesAsync(resourceGroup.Name, managedInstance.Name, dbName, parameters1); + Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities.Wait(TimeSpan.FromSeconds(3)); + policy = sqlClient.ManagedBackupShortTermRetentionPolicies.Get(resourceGroup.Name, managedInstance.Name, dbName); + Assert.Equal(basicRetention, policy.RetentionDays); + + // Attempt to increase retention period to 20 days and verfiy that the operation succeeded . + ManagedBackupShortTermRetentionPolicy parameters2 = new ManagedBackupShortTermRetentionPolicy(retentionDays: validValue); + sqlClient.ManagedBackupShortTermRetentionPolicies.CreateOrUpdateWithHttpMessagesAsync(resourceGroup.Name, managedInstance.Name, dbName, parameters2); + Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities.Wait(TimeSpan.FromSeconds(3)); + policy = sqlClient.ManagedBackupShortTermRetentionPolicies.Get(resourceGroup.Name, managedInstance.Name, dbName); + Assert.Equal(validValue, policy.RetentionDays); + } + } + } +} + diff --git a/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceTestFixture.cs b/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceTestFixture.cs index f94cefb114f2..52f571853f12 100644 --- a/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceTestFixture.cs +++ b/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceTestFixture.cs @@ -51,7 +51,7 @@ public ManagedInstanceTestFixture() } } - private VirtualNetwork CreateVirtualNetwork(SqlManagementTestContext context, ResourceGroup resourceGroup, string location) + public static VirtualNetwork CreateVirtualNetwork(SqlManagementTestContext context, ResourceGroup resourceGroup, string location) { NetworkManagementClient networkClient = context.GetClient(); diff --git a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedDatabaseRestoreScenarioTests/ShortTermRetentionOnLiveDatabase.json b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedDatabaseRestoreScenarioTests/ShortTermRetentionOnLiveDatabase.json new file mode 100644 index 000000000000..1177ae344537 --- /dev/null +++ b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedDatabaseRestoreScenarioTests/ShortTermRetentionOnLiveDatabase.json @@ -0,0 +1,11502 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourcegroups/sqlcrudtest-852?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg1Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"east us\",\r\n \"tags\": {\r\n \"sqlcrudtest-852\": \"2018-10-26 14:25:27Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d23e0c4b-6bb0-4357-bc8d-9fcfdbf4e14b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "73498612-1cd3-4316-93fb-758043279a6f" + ], + "x-ms-correlation-request-id": [ + "73498612-1cd3-4316-93fb-758043279a6f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142530Z:73498612-1cd3-4316-93fb-758043279a6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852\",\r\n \"name\": \"sqlcrudtest-852\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"sqlcrudtest-852\": \"2018-10-26 14:25:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3NxbGNydWR0ZXN0LTc1NTg/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationPortRanges\": [\r\n \"1433\",\r\n \"1434\",\r\n \"5022\",\r\n \"9000\",\r\n \"9003\",\r\n \"1438\",\r\n \"1440\",\r\n \"1452\",\r\n \"80\",\r\n \"443\"\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"allow_management_inbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"10.0.0.0/26\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"allow_misubnet_inbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 300,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"allow_health_probe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationPortRanges\": [\r\n \"80\",\r\n \"443\",\r\n \"12000\"\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"allow_management_outbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"10.0.0.0/26\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"allow_misubnet_outbound\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8797ac88-676e-44a3-90db-3d098c03ea94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2295" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c680b7ac-9a22-47f5-85a7-53013a6c3897" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/c680b7ac-9a22-47f5-85a7-53013a6c3897?api-version=2017-08-01" + ], + "x-ms-correlation-request-id": [ + "7608a9f1-8c14-4c24-9294-f580bcc25a9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142533Z:7608a9f1-8c14-4c24-9294-f580bcc25a9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "11470" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-7558\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6ec96d31-b63b-422b-a310-4326372c6978\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"allow_management_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_inbound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"1433\",\r\n \"1434\",\r\n \"5022\",\r\n \"9000\",\r\n \"9003\",\r\n \"1438\",\r\n \"1440\",\r\n \"1452\",\r\n \"80\",\r\n \"443\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_inbound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"10.0.0.0/26\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_health_probe\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_health_probe\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 300,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_management_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_outbound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"80\",\r\n \"443\",\r\n \"12000\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_outbound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"10.0.0.0/26\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"489357bb-024a-4026-9e35-1f77bcc5642d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/c680b7ac-9a22-47f5-85a7-53013a6c3897?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzY4MGI3YWMtOWEyMi00N2Y1LTg1YTctNTMwMTNhNmMzODk3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d648c61b-ba8f-4284-ab39-40e88b646e36" + ], + "x-ms-correlation-request-id": [ + "17526385-7ae4-4eaf-85f5-be91b4abf0a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142543Z:17526385-7ae4-4eaf-85f5-be91b4abf0a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3NxbGNydWR0ZXN0LTc1NTg/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "933e01ae-aa9f-486b-a2e7-fbb97e90781e" + ], + "x-ms-correlation-request-id": [ + "eed4757f-27c5-4de2-a743-837769e3f5e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142543Z:eed4757f-27c5-4de2-a743-837769e3f5e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "11482" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-7558\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6ec96d31-b63b-422b-a310-4326372c6978\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"allow_management_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"1433\",\r\n \"1434\",\r\n \"5022\",\r\n \"9000\",\r\n \"9003\",\r\n \"1438\",\r\n \"1440\",\r\n \"1452\",\r\n \"80\",\r\n \"443\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"10.0.0.0/26\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_health_probe\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_health_probe\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 300,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_management_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"80\",\r\n \"443\",\r\n \"12000\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"10.0.0.0/26\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3NxbGNydWR0ZXN0LTc1NTg/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47a886eb-73b5-42ac-972a-9ec4a276a684" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "54b412eb-46e9-45e6-9830-c07ffae0b587" + ], + "x-ms-correlation-request-id": [ + "627f2985-a8ed-4a58-b4ca-473acdc3acc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142544Z:627f2985-a8ed-4a58-b4ca-473acdc3acc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "11482" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-7558\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6ec96d31-b63b-422b-a310-4326372c6978\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"allow_management_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"1433\",\r\n \"1434\",\r\n \"5022\",\r\n \"9000\",\r\n \"9003\",\r\n \"1438\",\r\n \"1440\",\r\n \"1452\",\r\n \"80\",\r\n \"443\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_inbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"10.0.0.0/26\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_health_probe\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_health_probe\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 300,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_management_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"80\",\r\n \"443\",\r\n \"12000\"\r\n ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"allow_misubnet_outbound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"10.0.0.0/26\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvc3FsY3J1ZHRlc3QtMTU4Nz9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"sqlcrudtest-6385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7161e2cb-93eb-4bb9-b34c-15b35061443b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "246" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5098dba9-9881-4c16-af95-bff4da40d510" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/5098dba9-9881-4c16-af95-bff4da40d510?api-version=2017-08-01" + ], + "x-ms-correlation-request-id": [ + "53c93a57-45f3-4dd7-80fa-9d6f398e98bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142545Z:53c93a57-45f3-4dd7-80fa-9d6f398e98bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "975" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-1587\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\",\r\n \"etag\": \"W/\\\"fa06988a-3b28-4a18-b988-f8a71f04deb2\\\"\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"838839c2-0459-4dbd-9837-1e7318e35f23\",\r\n \"routes\": [\r\n {\r\n \"name\": \"sqlcrudtest-6385\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587/routes/sqlcrudtest-6385\",\r\n \"etag\": \"W/\\\"fa06988a-3b28-4a18-b988-f8a71f04deb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/5098dba9-9881-4c16-af95-bff4da40d510?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTA5OGRiYTktOTg4MS00YzE2LWFmOTUtYmZmNGRhNDBkNTEwP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5c873a41-3967-423f-a099-cf55fb393683" + ], + "x-ms-correlation-request-id": [ + "1b0ecb72-d6fc-4dd4-a998-c0fad6bc7fcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142555Z:1b0ecb72-d6fc-4dd4-a998-c0fad6bc7fcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvc3FsY3J1ZHRlc3QtMTU4Nz9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "51eaa191-a309-46df-b5c4-5839a7b42bb9" + ], + "x-ms-correlation-request-id": [ + "64785ca8-d4be-4a49-bc68-7fa9f408684b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142555Z:64785ca8-d4be-4a49-bc68-7fa9f408684b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "977" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-1587\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\",\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"838839c2-0459-4dbd-9837-1e7318e35f23\",\r\n \"routes\": [\r\n {\r\n \"name\": \"sqlcrudtest-6385\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587/routes/sqlcrudtest-6385\",\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvc3FsY3J1ZHRlc3QtMTU4Nz9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e0805a3-6d0a-485f-90cc-c4dd6b7c1fff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a1e69a68-31c4-40c6-8e97-68ac08178003" + ], + "x-ms-correlation-request-id": [ + "a9bc4302-9b15-45fe-a177-09f55e9bcbe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142556Z:a9bc4302-9b15-45fe-a177-09f55e9bcbe9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "977" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-1587\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\",\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"838839c2-0459-4dbd-9837-1e7318e35f23\",\r\n \"routes\": [\r\n {\r\n \"name\": \"sqlcrudtest-6385\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587/routes/sqlcrudtest-6385\",\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3NxbGNydWR0ZXN0LTY2ODI/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/22\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/26\",\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"1433\",\r\n \"1434\",\r\n \"5022\",\r\n \"9000\",\r\n \"9003\",\r\n \"1438\",\r\n \"1440\",\r\n \"1452\",\r\n \"80\",\r\n \"443\"\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"allow_management_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_inbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"10.0.0.0/26\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"allow_misubnet_inbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_inbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 300,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"allow_health_probe\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_health_probe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"80\",\r\n \"443\",\r\n \"12000\"\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"allow_management_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_management_outbound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"10.0.0.0/26\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"allow_misubnet_outbound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/securityRules/allow_misubnet_outbound\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"6ec96d31-b63b-422b-a310-4326372c6978\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"24f1da37-72e4-43e9-bcc8-c7edf861c91d\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\",\r\n \"location\": \"eastus\"\r\n },\r\n \"routeTable\": {\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sqlcrudtest-6385\",\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587/routes/sqlcrudtest-6385\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"8f24594e-6c99-4537-ad7b-2f8c083e12b6\\\"\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\",\r\n \"location\": \"eastus\"\r\n }\r\n },\r\n \"name\": \"MISubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1674ac06-4a45-4d6e-b9f1-a98c5571df14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "14383" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:25:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8ceeac34-332c-4a7f-bdcd-9e5b46d89902" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/8ceeac34-332c-4a7f-bdcd-9e5b46d89902?api-version=2017-08-01" + ], + "x-ms-correlation-request-id": [ + "add51460-bf06-45ff-88d7-996c42256ad3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142557Z:add51460-bf06-45ff-88d7-996c42256ad3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1562" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-6682\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682\",\r\n \"etag\": \"W/\\\"90b81d4f-3a55-4645-9675-40566d48873e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"04304ee6-a1b1-4ec9-a901-027bf2d23989\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/22\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"MISubnet\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682/subnets/MISubnet\",\r\n \"etag\": \"W/\\\"90b81d4f-3a55-4645-9675-40566d48873e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/26\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\"\r\n },\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Network/locations/eastus/operations/8ceeac34-332c-4a7f-bdcd-9e5b46d89902?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGNlZWFjMzQtMzMyYy00YTdmLWJkY2QtOWU1YjQ2ZDg5OTAyP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:26:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2f307395-697d-46a5-a4f7-67a6bb8366d1" + ], + "x-ms-correlation-request-id": [ + "0537e6b9-6d07-426e-aa85-8a5695582181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142600Z:0537e6b9-6d07-426e-aa85-8a5695582181" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3NxbGNydWR0ZXN0LTY2ODI/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:26:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"11f006ec-3036-4f3e-a565-374e07dc3453\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f7fb1bbf-dbdd-4f48-8616-719d0934fb46" + ], + "x-ms-correlation-request-id": [ + "772d767f-072f-45f8-8367-02952544c0fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142600Z:772d767f-072f-45f8-8367-02952544c0fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1564" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-6682\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682\",\r\n \"etag\": \"W/\\\"11f006ec-3036-4f3e-a565-374e07dc3453\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04304ee6-a1b1-4ec9-a901-027bf2d23989\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/22\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"MISubnet\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682/subnets/MISubnet\",\r\n \"etag\": \"W/\\\"11f006ec-3036-4f3e-a565-374e07dc3453\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/26\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\"\r\n },\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682?api-version=2017-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3NxbGNydWR0ZXN0LTY2ODI/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba61edc4-2e5e-4cb4-9790-1d862867b5a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:26:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"11f006ec-3036-4f3e-a565-374e07dc3453\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1883b78b-edf9-477a-a790-967323cc5112" + ], + "x-ms-correlation-request-id": [ + "27629912-f491-40f9-a02b-e808ea6d0601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142601Z:27629912-f491-40f9-a02b-e808ea6d0601" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1564" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sqlcrudtest-6682\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682\",\r\n \"etag\": \"W/\\\"11f006ec-3036-4f3e-a565-374e07dc3453\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04304ee6-a1b1-4ec9-a901-027bf2d23989\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/22\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"MISubnet\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682/subnets/MISubnet\",\r\n \"etag\": \"W/\\\"11f006ec-3036-4f3e-a565-374e07dc3453\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/26\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/networkSecurityGroups/sqlcrudtest-7558\"\r\n },\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/routeTables/sqlcrudtest-1587\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682/subnets/MISubnet\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75f470e2-f6e8-426d-9bac-e090129db13a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "409" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:26:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceOperationResults/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "e7a48ffa-3e83-40c4-91b5-168a53143d02" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2610e9d0-ec4f-468c-8bdf-abc00f9e0433" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142602Z:2610e9d0-ec4f-468c-8bdf-abc00f9e0433" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:27:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ad73dae3-58b8-4070-8469-301a8b14b8e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "32a666b6-69ff-4312-8e49-39bf63d60f2a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142703Z:32a666b6-69ff-4312-8e49-39bf63d60f2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:28:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6a65efd4-3865-48c8-9fd3-df95662fd7cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "74bbb815-0bf6-4060-9c82-26d606900723" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142805Z:74bbb815-0bf6-4060-9c82-26d606900723" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:29:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8f09ddff-aa3b-4221-9510-76989da7c9f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a74ebb30-d911-4d68-acca-63e5c180166a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T142906Z:a74ebb30-d911-4d68-acca-63e5c180166a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:30:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ed06c47b-cdd3-475f-a976-bf978e32f1df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9dee2c51-a266-408a-b453-4b558859095c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143006Z:9dee2c51-a266-408a-b453-4b558859095c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:31:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30a33887-eef1-4db3-b8af-c9c17803a657" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "700215bc-eff3-4d56-a1c9-29a8ffb4d892" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143107Z:700215bc-eff3-4d56-a1c9-29a8ffb4d892" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:32:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "af8da29a-b5f5-4f05-aec7-b93f3775fa87" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c74830d2-3707-422e-84da-57e748b91074" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143207Z:c74830d2-3707-422e-84da-57e748b91074" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:33:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "76e7698a-b205-4d8c-8498-2bd250c41905" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f8827f83-20f9-46f8-bec4-60350b4f00a8" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143307Z:f8827f83-20f9-46f8-bec4-60350b4f00a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:34:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e365a37a-e38e-4367-9bae-9e864b5af5bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9750abcd-7f52-414f-ac1a-6ae78efaa0a9" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143408Z:9750abcd-7f52-414f-ac1a-6ae78efaa0a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:35:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "cac26a70-5337-4962-ba24-dfe46b119316" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9c842b14-769f-442f-a971-9d8e247d004f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143508Z:9c842b14-769f-442f-a971-9d8e247d004f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:36:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "48f63345-68d1-4c92-aa60-19e96d514b3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "43ef773f-b282-4b5a-8e82-470fd2a4ef8d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143609Z:43ef773f-b282-4b5a-8e82-470fd2a4ef8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:37:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4cfaea15-d463-46f9-8490-77f55643b1cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "8b2a2cf9-0210-4e8e-9365-e986a94c4e09" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143709Z:8b2a2cf9-0210-4e8e-9365-e986a94c4e09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:38:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6a0e514b-adef-4f64-85f4-4e14b77e9cd7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "e87b7094-56df-438e-84f8-a70e263ca9f6" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143810Z:e87b7094-56df-438e-84f8-a70e263ca9f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:39:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "31099299-2f98-49ea-bc87-8178867af2af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "59cb5d8f-4af9-45d6-895a-ff9b91f87172" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T143910Z:59cb5d8f-4af9-45d6-895a-ff9b91f87172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:40:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f533a79c-542d-4e68-b704-375e075955a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "bc7ef91c-cd76-433a-91e0-c126d64bc01d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144011Z:bc7ef91c-cd76-433a-91e0-c126d64bc01d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:41:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "72022661-aae3-4899-bbdc-cd365450a971" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "940e49f1-2ebe-48ec-9652-d9ea4d1fad6c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144111Z:940e49f1-2ebe-48ec-9652-d9ea4d1fad6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:42:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bf1b9e47-822a-44a1-a3a8-df51eebfdb93" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a5cac8e9-521a-4db3-832c-8450067d20c8" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144212Z:a5cac8e9-521a-4db3-832c-8450067d20c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:43:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "11cb5468-9e83-4ebc-9fed-26d09304f3ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "8707ae8a-8a12-44ff-ab4d-483c7cfd5d4f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144313Z:8707ae8a-8a12-44ff-ab4d-483c7cfd5d4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:44:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e1238bbb-6505-41fa-a621-a89177f5403c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "acbde2ab-1012-4808-b502-70cca1c79a9b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144413Z:acbde2ab-1012-4808-b502-70cca1c79a9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:45:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "da7a0a2c-f2a7-44c3-9370-643205ab0eee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "3b68fd2a-af62-45dc-b85c-8f31ba9e8775" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144513Z:3b68fd2a-af62-45dc-b85c-8f31ba9e8775" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:46:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "705fae46-9e39-4ff0-8e35-2a343ed560b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e85bd658-7993-4b64-9e71-ad364311ec41" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144614Z:e85bd658-7993-4b64-9e71-ad364311ec41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:47:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c6663004-8039-4eeb-abed-db838dcc4b82" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "cb0eebb8-4343-49e7-b025-176837085d91" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144714Z:cb0eebb8-4343-49e7-b025-176837085d91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:48:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d29fd6a9-ad3c-413f-a87f-746d4134a821" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7529be02-60c6-4f59-bcb1-102eb35475aa" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144815Z:7529be02-60c6-4f59-bcb1-102eb35475aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:49:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ac39d1ca-b0d7-4fc9-bab7-574bffa560b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fa5c8314-a2ae-4e14-a6b0-6ec55fd4abf0" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T144915Z:fa5c8314-a2ae-4e14-a6b0-6ec55fd4abf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:50:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1fcd9ebf-73a6-4c3e-bd8f-926c3b542ad2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "83698af2-ea30-441d-9063-086ae53821fd" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145016Z:83698af2-ea30-441d-9063-086ae53821fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:51:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c70690e9-8831-40df-b174-88d5530ef473" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a352411c-3c9e-4684-9ee8-bb27446de19a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145116Z:a352411c-3c9e-4684-9ee8-bb27446de19a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:52:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "052ab43b-0be3-481a-a7de-6fc4fd9b2ee6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c74e79d4-c153-46fc-92b0-c33cc7cc2c99" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145216Z:c74e79d4-c153-46fc-92b0-c33cc7cc2c99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:53:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1f5947fb-f370-46f9-bd25-ec499a457fdd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e53aeb25-49ff-4265-b339-e8f58addef7e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145317Z:e53aeb25-49ff-4265-b339-e8f58addef7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:54:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4bee4596-c2f7-4730-9188-b7d11e390c72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "4d3f4ab6-52c1-4d7b-9fbc-1540fcfe36ea" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145417Z:4d3f4ab6-52c1-4d7b-9fbc-1540fcfe36ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:55:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "29391964-852f-4565-8359-bb6d687c20aa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6dd49d7f-5dd7-4cbd-8c32-7b61d59dd03e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145517Z:6dd49d7f-5dd7-4cbd-8c32-7b61d59dd03e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:56:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9827b2eb-fb54-4855-91cd-6feb5555e427" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "87c8b4b2-1098-42c9-9dc9-76a041c0abb2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145618Z:87c8b4b2-1098-42c9-9dc9-76a041c0abb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:57:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9ea862c0-a55b-48cb-9b2c-b35ccff0fa55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b4fbd5f2-ca11-4ed3-a6f4-c36242cd569b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145718Z:b4fbd5f2-ca11-4ed3-a6f4-c36242cd569b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:58:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5c50a8c6-88b7-494a-9f5d-8b28c59539c3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b5a8e017-5bb3-414e-b1cf-92f5d6bbf091" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145818Z:b5a8e017-5bb3-414e-b1cf-92f5d6bbf091" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 14:59:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30bc9414-4e55-499a-ae11-70d89cccbaba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "8a50bff0-70e8-407e-9406-54f29543d406" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T145918Z:8a50bff0-70e8-407e-9406-54f29543d406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:00:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a08d8f71-e661-4332-83a6-339c3679e267" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5b02f1fd-b49c-4467-8da7-18bc3ec46be2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150019Z:5b02f1fd-b49c-4467-8da7-18bc3ec46be2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:01:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6cd4fb7b-639a-4589-91c5-886cdf0bd33a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "4c07b3ba-29d0-44b0-9387-b797c010e604" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150119Z:4c07b3ba-29d0-44b0-9387-b797c010e604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:02:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "16e1c903-b733-4618-8958-db8558178e8b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "53787418-6bc8-4582-a25a-2b1ab4f92e2a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150220Z:53787418-6bc8-4582-a25a-2b1ab4f92e2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:03:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c71b58cb-8d40-4e5e-8cc2-bd1f58967ae8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b730a9fa-4c63-4613-8306-abf307870e04" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150320Z:b730a9fa-4c63-4613-8306-abf307870e04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:04:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "53673d2c-f609-400a-aa22-a058125dabef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "e2d9d8b3-4153-4802-ab28-bda980520ffb" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150421Z:e2d9d8b3-4153-4802-ab28-bda980520ffb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:05:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c7dabbff-20ed-491a-a143-c11e85d778e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1b72e142-3db8-43b7-aff1-ce7c9d546fd4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150522Z:1b72e142-3db8-43b7-aff1-ce7c9d546fd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:06:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4df1d5d6-e508-4af9-ad9d-3362304ca319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "a56fac09-16b8-4b51-aea0-7b41caf3ca0a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150622Z:a56fac09-16b8-4b51-aea0-7b41caf3ca0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:07:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1f08d995-a18e-4003-a1d8-d6dbc69e5cc4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "8ed33d9d-b04f-435e-b13c-d8d8aacf7040" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150723Z:8ed33d9d-b04f-435e-b13c-d8d8aacf7040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:08:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "490b3595-4b88-46ab-8557-22fbd6036356" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b51b0df3-ea20-4270-b988-47994a57afe2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150823Z:b51b0df3-ea20-4270-b988-47994a57afe2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:09:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ea043a9c-f82e-43ef-a0c1-47f0a22027cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "122f6eba-dae5-4d55-a9d7-a806b4c8c1b7" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T150924Z:122f6eba-dae5-4d55-a9d7-a806b4c8c1b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:10:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bd76742d-a6f7-4e58-96bd-8e5b7b0d69db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "3c8bce4e-0cbb-4d3d-b74d-7d2c2298bcfe" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151024Z:3c8bce4e-0cbb-4d3d-b74d-7d2c2298bcfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:11:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d4f063a2-4a0a-444f-b8cb-3c122a637f2f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "e291520a-bf8d-4344-8710-ca7bbbcd2271" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151124Z:e291520a-bf8d-4344-8710-ca7bbbcd2271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:12:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1e54b6e2-eda3-4608-83d4-e1930d03b7f9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "059c84fe-1a74-4e30-88cc-03429b803e4d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151224Z:059c84fe-1a74-4e30-88cc-03429b803e4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:13:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a800c456-96d6-4754-b522-4874a360c8cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "efde63b3-c0f4-448b-bd3d-8f668cadb49b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151325Z:efde63b3-c0f4-448b-bd3d-8f668cadb49b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:14:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c6579b47-532f-43c6-a31f-6740d17eee8c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "96b9231f-9f25-4a8e-99b5-86df5df7b88f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151425Z:96b9231f-9f25-4a8e-99b5-86df5df7b88f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:15:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "aed973f6-2aad-44fc-8eac-67e4929ab660" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5a4611d9-d839-4cb5-9d63-effc02724672" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151525Z:5a4611d9-d839-4cb5-9d63-effc02724672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:16:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2a420f05-4acc-4a77-a638-1297d5d29cf9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ef0a1f03-42da-432c-b484-acef4f33385f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151626Z:ef0a1f03-42da-432c-b484-acef4f33385f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:17:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "dc0bc347-6d00-40d0-b49b-023c5328d78d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "575203f1-7167-4b47-8601-2ada510c0208" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151726Z:575203f1-7167-4b47-8601-2ada510c0208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:18:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a441548d-097d-4aec-8b4e-5aa95da8256c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ba9a7df8-157b-4c86-a75a-5f3adde6d470" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151827Z:ba9a7df8-157b-4c86-a75a-5f3adde6d470" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:19:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9fdef7a2-c9e7-4b41-afce-059b9cfb8402" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "de473ef6-84b1-400e-a44b-0c442dfd3639" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T151927Z:de473ef6-84b1-400e-a44b-0c442dfd3639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:20:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3c91357c-0182-4251-842f-fac17f4722ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b99bde91-3394-4db1-b7ec-2060e8d5795d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152028Z:b99bde91-3394-4db1-b7ec-2060e8d5795d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:21:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b7734d69-5d19-4499-b524-0c0b8cadb966" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "f7eba36b-530d-4cc8-81a9-00d3cc5ba5ac" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152129Z:f7eba36b-530d-4cc8-81a9-00d3cc5ba5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:22:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "93fb1dba-c6a2-4a62-b2c5-22c6d70f3f4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "538949d7-90ab-4999-baf8-bff4c552aea2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152229Z:538949d7-90ab-4999-baf8-bff4c552aea2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:23:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2e8b8612-cc12-45e0-9a2d-2586fad52048" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "abff2418-6c12-477b-bee9-7cbdba65d92f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152329Z:abff2418-6c12-477b-bee9-7cbdba65d92f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:24:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a0db54de-5ba8-4c81-8beb-cee179d570e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "21527109-4a78-490f-b934-b5878ecf541b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152429Z:21527109-4a78-490f-b934-b5878ecf541b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:25:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3f94ac8e-0f61-4e19-bbe3-61ca8fc07089" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7a04f3f3-9c05-462f-af68-1ce10e2e6a61" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152530Z:7a04f3f3-9c05-462f-af68-1ce10e2e6a61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:26:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9c3cd97e-4c3e-44b7-b11d-1c1ae01e056b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "099fe87b-e743-4ef9-a3e6-21dff3b46ac8" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152630Z:099fe87b-e743-4ef9-a3e6-21dff3b46ac8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:27:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0628cd77-a862-4fb2-b987-056fd0c8d73e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9d27061b-b7cc-47d7-969f-de3c0d60f51a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152731Z:9d27061b-b7cc-47d7-969f-de3c0d60f51a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:28:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "694dfbb0-5964-441f-848c-7ba96987f1c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "65b62ace-6a75-4ba9-ad1c-41a5a3d3ec0b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152831Z:65b62ace-6a75-4ba9-ad1c-41a5a3d3ec0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:29:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d6b5bfb2-2275-4e0e-aa45-baf11a5ae1f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5f172d38-328d-4567-8d68-461dad3af860" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T152932Z:5f172d38-328d-4567-8d68-461dad3af860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:30:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4156d78d-5b82-4a41-b6c8-20037de6c4e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "029a89d0-d5bb-41cb-833f-5b77bc21c612" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153032Z:029a89d0-d5bb-41cb-833f-5b77bc21c612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:31:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a3b9936a-5d57-4533-80b9-438d5ca91f1a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "10abf596-2249-4aad-a05c-acba1addc85d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153133Z:10abf596-2249-4aad-a05c-acba1addc85d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:32:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b49b51a2-ecab-4884-b91d-4b31b3aeb948" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "aaeb63d9-be6a-48af-a365-a39dd2850678" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153233Z:aaeb63d9-be6a-48af-a365-a39dd2850678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:33:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5fc5e543-8fa1-4882-9bb7-b816f9dfac6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a75752b9-c36c-4afb-bf29-afbe16c6f959" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153333Z:a75752b9-c36c-4afb-bf29-afbe16c6f959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:34:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "64f71a33-268d-4aae-8ae5-bc4807526950" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c206fc13-5695-4672-98ac-1041f0c6738c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153434Z:c206fc13-5695-4672-98ac-1041f0c6738c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:35:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b23e4fa1-9ca3-47e7-a426-8f87a2fa4c8c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5618b456-d1cc-421b-a06a-21a641272cb3" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153534Z:5618b456-d1cc-421b-a06a-21a641272cb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:36:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "003ac559-cb16-46c0-a645-1f437e4e967a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "7d1bb4c2-c271-45b0-a053-9377074c7a11" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153635Z:7d1bb4c2-c271-45b0-a053-9377074c7a11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:37:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "95ef945b-7cfa-4810-84e4-2a00feb481e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "91bd2205-768e-4ee3-8ec1-1434d912e5a4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153735Z:91bd2205-768e-4ee3-8ec1-1434d912e5a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:38:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a38d3232-f393-4ff2-831e-79d159d5a01f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2341c8a0-79d9-4d18-9464-3a02ddc2bbd6" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153835Z:2341c8a0-79d9-4d18-9464-3a02ddc2bbd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:39:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3b6b17c9-fe6f-4d54-a48f-7104c88ee4f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d7812337-3044-4127-9f0f-eb20ac5be4be" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T153936Z:d7812337-3044-4127-9f0f-eb20ac5be4be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:40:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "93d5931c-98b6-4803-80fe-dbfc955b6313" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "417c763e-05b3-4dd0-80a0-7fc2757988ca" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154036Z:417c763e-05b3-4dd0-80a0-7fc2757988ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:41:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "436c6169-c8eb-4f83-87be-1412a1245e0d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d5e813d6-c90b-4741-9f48-041f269e85b3" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154137Z:d5e813d6-c90b-4741-9f48-041f269e85b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:42:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "dd05c082-5367-4ba5-bf5f-6c6f5cbe7e4b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "8482596c-4929-4fb9-bfc2-a80ab240383d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154237Z:8482596c-4929-4fb9-bfc2-a80ab240383d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:43:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "28bb5a36-9ebb-46e4-a337-dd207eef2c5c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "baf19249-2094-4c10-99b5-63e68046b3c2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154338Z:baf19249-2094-4c10-99b5-63e68046b3c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:44:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "258527bc-f53c-4ea4-88df-85d17b11a263" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "170fd4c3-1b00-4627-a9f7-0e4d6f7d4b2c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154438Z:170fd4c3-1b00-4627-a9f7-0e4d6f7d4b2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:45:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a6a54f1b-c07d-4052-8aef-7fb612b3413c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "d58aee67-606d-4755-a428-fa1183881fcf" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154538Z:d58aee67-606d-4755-a428-fa1183881fcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:46:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0b527cc3-be53-4975-b6c7-d174bd71c183" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "684b6348-f97c-491a-9db4-da93de7e39ed" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154639Z:684b6348-f97c-491a-9db4-da93de7e39ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:47:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7a9d5cd7-33e3-4f99-adb3-25cd442c665d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "4bfff70a-73ee-45d6-b883-ae05e791f176" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154740Z:4bfff70a-73ee-45d6-b883-ae05e791f176" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:48:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "696e4511-112a-4575-97de-1990f71082f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "76e3e3ad-288b-46d2-9c1d-98431a436045" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154840Z:76e3e3ad-288b-46d2-9c1d-98431a436045" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:49:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "47c10756-6957-44ae-9ce3-8219a09ba550" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d930996b-b5fb-4972-8326-a1fa321bef7a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T154940Z:d930996b-b5fb-4972-8326-a1fa321bef7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:50:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6bfd93ab-b4fa-448c-a684-77783a82d9d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "24b5c556-a028-4f01-9ffe-7c11b0caf253" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155041Z:24b5c556-a028-4f01-9ffe-7c11b0caf253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:51:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "fec96611-8456-487c-8e50-3c065cbbedad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3d9d4797-4bfa-44e1-8520-2f92a56e07be" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155141Z:3d9d4797-4bfa-44e1-8520-2f92a56e07be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:52:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "747707bc-ef7d-47fc-9ffe-e07a98943e74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "19d490a9-e16b-42b0-8df0-76fc8f6f7ad4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155242Z:19d490a9-e16b-42b0-8df0-76fc8f6f7ad4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:53:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bdbb4ed7-d852-4732-b8bc-a31fc67a3429" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c7a63fc0-e565-43de-9334-cd34cd8988d7" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155342Z:c7a63fc0-e565-43de-9334-cd34cd8988d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:54:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2add1ef8-8c78-4253-bc78-426900c3d54b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "2be5e954-293f-4418-b57a-1e5dddb1c22e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155450Z:2be5e954-293f-4418-b57a-1e5dddb1c22e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:55:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "73b39c25-cabd-4a4c-b36f-b0af3b82b53b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "abb1bdd4-06bd-4ba6-93bf-3cfa612b4597" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155551Z:abb1bdd4-06bd-4ba6-93bf-3cfa612b4597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:56:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ecd73f06-9732-464f-9c21-aea37727ddde" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "d5358a07-32b4-453c-bb0b-382f15a0c276" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155651Z:d5358a07-32b4-453c-bb0b-382f15a0c276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:57:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9b7b2b37-435d-4606-b336-2d5660b646b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "18eb3b87-5d4f-48f5-9823-c5cc6a642b08" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155751Z:18eb3b87-5d4f-48f5-9823-c5cc6a642b08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:58:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d53ca931-6638-4e24-b93b-16be48ee3761" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "608d53a1-9e5e-42e8-9316-6b9ce1a331d5" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155852Z:608d53a1-9e5e-42e8-9316-6b9ce1a331d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 15:59:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9b533dff-b943-4c2a-865c-da102ae49066" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ee4cb42a-4271-4b49-a5ea-dbe27a55e9d2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T155952Z:ee4cb42a-4271-4b49-a5ea-dbe27a55e9d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:00:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "dbe007f6-711d-4a33-9aa3-20df1afa8af6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "914d9caa-0805-47e7-8bff-f262eb94d1d6" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160053Z:914d9caa-0805-47e7-8bff-f262eb94d1d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:01:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d9b2862b-e43e-4814-b01f-4e91f4be30bf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "eab7e9c5-2f12-4b03-bd3d-9f787e8adccd" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160153Z:eab7e9c5-2f12-4b03-bd3d-9f787e8adccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:02:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4287998-c6f8-4d1b-ad0a-515f20c2bc9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ed5f49f7-4c61-44d0-9db2-899711495c58" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160253Z:ed5f49f7-4c61-44d0-9db2-899711495c58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:03:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "180da1cc-bced-402a-9585-85f10afab436" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "053480d6-e7e3-4aa3-a009-58b56172fd1e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160354Z:053480d6-e7e3-4aa3-a009-58b56172fd1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:04:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "81977942-c021-4ebf-9505-cfbad709d2e4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "0f0a80c5-5cc1-4d1d-a2a2-638bd6e8a7e6" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160454Z:0f0a80c5-5cc1-4d1d-a2a2-638bd6e8a7e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:05:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bcde99e9-7605-465f-85dd-cdec3cc0eeb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "3c53c6b7-5347-425f-8be2-ca1abe822ef5" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160555Z:3c53c6b7-5347-425f-8be2-ca1abe822ef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:06:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "23925dc0-bf28-4fa4-8743-649f90b56f68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "ffa3a838-18ca-4c98-a949-ecf238c3f0dc" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160655Z:ffa3a838-18ca-4c98-a949-ecf238c3f0dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:07:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0aaac9a6-d517-409c-8c5d-171dcef877ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "9400694e-707f-4841-b4f3-331283a3cc1e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160755Z:9400694e-707f-4841-b4f3-331283a3cc1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:08:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b8519333-8535-439f-930e-4c1bec0e6945" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "f71c4739-8916-41b8-af79-fce008b4d3f9" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160856Z:f71c4739-8916-41b8-af79-fce008b4d3f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:09:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4baf216f-c450-40b8-abb6-8add0c4cd321" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "fe55c00e-bf26-4ef6-a7a2-b003741dcced" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T160956Z:fe55c00e-bf26-4ef6-a7a2-b003741dcced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:10:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "00b044a2-2c49-4659-95f9-510c98472cdc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b4ba88ac-e872-4bbb-9458-f2593ca10993" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161057Z:b4ba88ac-e872-4bbb-9458-f2593ca10993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:11:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3d65aa50-5b65-4a40-a995-50e7a9c02f96" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "3de49d6c-e2ce-47cd-9212-6bb221800fca" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161157Z:3de49d6c-e2ce-47cd-9212-6bb221800fca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:12:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "40374e21-0914-4824-b576-d9d8aa7b7618" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "8591895c-6e31-4252-a69e-073104dac6a2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161257Z:8591895c-6e31-4252-a69e-073104dac6a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:13:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4ffc0642-c451-4863-8e2a-b04f74e89b28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "83c5ae00-169c-4276-b22e-1c1ca0915462" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161358Z:83c5ae00-169c-4276-b22e-1c1ca0915462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:14:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "718e751e-2df0-4441-8293-73876aec90b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "93e853cd-50fe-493a-944c-990a0ef316a2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161458Z:93e853cd-50fe-493a-944c-990a0ef316a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:15:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "674e1b1c-22c3-44ff-bd13-d9e07259e0c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "891a9c2f-4cf6-499a-8779-826a76f7642f" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161600Z:891a9c2f-4cf6-499a-8779-826a76f7642f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:17:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d54e4101-3119-44f2-be7d-a13903d17ef1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "575c13a6-8fc2-4443-931a-864cda36003d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161700Z:575c13a6-8fc2-4443-931a-864cda36003d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:18:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "01306aef-373d-4073-8802-8a644658be8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5888fd01-f6b4-4343-b2e9-c0ff2ad91bbe" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161800Z:5888fd01-f6b4-4343-b2e9-c0ff2ad91bbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:19:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "32b39037-5c71-4475-9bcb-0bec2ba42cbb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "1b67f7f6-0819-400e-94e6-eee862ef0a66" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T161901Z:1b67f7f6-0819-400e-94e6-eee862ef0a66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:20:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "767e4d33-76fb-47c1-a565-34337e3b9779" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "0cad8e36-194e-4bd3-a291-dee2487396f9" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162001Z:0cad8e36-194e-4bd3-a291-dee2487396f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:21:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1a0dd530-8fc3-430a-b1f5-759f0465386b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "0bc6066e-cf28-4c98-97ff-befa0268583d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162102Z:0bc6066e-cf28-4c98-97ff-befa0268583d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:22:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9d7304ad-ba4d-49ae-a469-bd3b55c8d678" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "806b0bbc-4bed-4046-ba21-3692a3fe3a8d" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162202Z:806b0bbc-4bed-4046-ba21-3692a3fe3a8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:23:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b4c11573-f6f1-4b94-983f-7ceb4644cf23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "45735e99-4e76-4797-977c-8d17aefb78c2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162303Z:45735e99-4e76-4797-977c-8d17aefb78c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:24:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5078b5ea-f37c-4803-b103-c3df40cdd655" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "99810dca-edf4-4277-9974-4d497cb8bee5" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162403Z:99810dca-edf4-4277-9974-4d497cb8bee5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:25:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a4e191aa-424e-4539-b8b8-b7590940ced5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "ba764407-bbd1-4c6f-9439-65aa97539717" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162504Z:ba764407-bbd1-4c6f-9439-65aa97539717" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:26:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4b0ef2f6-3842-4d4c-8b38-d5bf887af4ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "69ca3739-889d-4277-bc15-25e653458a19" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162604Z:69ca3739-889d-4277-bc15-25e653458a19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:27:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2e9ea025-c4e7-442e-8a78-c10533ef2a33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "244c200b-efce-48d2-9451-b75efa738da2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162704Z:244c200b-efce-48d2-9451-b75efa738da2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:28:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5e4d67c5-a51b-4780-b2ba-464d5e12d455" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2bb6aa55-efb5-4a60-945b-b8496c191789" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162805Z:2bb6aa55-efb5-4a60-945b-b8496c191789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:29:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e3f203f0-9266-497d-ba47-4b5463208416" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "adb1cf8b-7e4c-4c23-b94b-18bebc203b76" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T162906Z:adb1cf8b-7e4c-4c23-b94b-18bebc203b76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:30:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a6aa0429-8edc-4107-a39e-1c28d6bf1417" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "bf8c0d5d-816e-4ff5-b28a-1bc01123c1c1" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163006Z:bf8c0d5d-816e-4ff5-b28a-1bc01123c1c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:31:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f260f290-667d-46b7-9f14-257385933037" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c9e2771d-cea0-42f3-aa6d-0ff7eb57bbb7" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163107Z:c9e2771d-cea0-42f3-aa6d-0ff7eb57bbb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:32:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a11af26a-85f5-4061-b6e7-a401e40ba777" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "9da4b96d-85c0-4c3b-a202-33a1ed1fd672" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163207Z:9da4b96d-85c0-4c3b-a202-33a1ed1fd672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:33:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "49e53e5e-576b-45e7-89e9-c04311e4d250" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "4a1789d3-6d97-4fd7-9cad-803337442fc9" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163308Z:4a1789d3-6d97-4fd7-9cad-803337442fc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:34:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9e9ac8a7-8ecd-49b4-92af-76b6ff35c6fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "b5016305-18c1-4f1e-904b-6bbdb1cda60b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163408Z:b5016305-18c1-4f1e-904b-6bbdb1cda60b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:35:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a31d31e7-36d4-441c-8913-19f7ff6a7d98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8839b172-a2d7-4c19-af78-ae3800428b0a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163509Z:8839b172-a2d7-4c19-af78-ae3800428b0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:36:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7f6cdb29-6bf7-4baa-b28a-ef3186748076" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b2764e8e-3cde-4d87-b502-701a1e697bc3" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163609Z:b2764e8e-3cde-4d87-b502-701a1e697bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:37:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ba90ab30-2c6c-45e5-a140-a104d8883be0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "bf15818c-3cad-45b3-a71f-a31d5702cf2c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163710Z:bf15818c-3cad-45b3-a71f-a31d5702cf2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:38:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0b1bcc00-f401-4e21-813f-d539ea82872f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "cbd7c2a2-1a36-470a-8e67-6487f9dc22a4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163810Z:cbd7c2a2-1a36-470a-8e67-6487f9dc22a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:39:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3bfb4d79-3d28-44ea-8195-c829b794ac8b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "bcb92277-70f2-4be6-b3c2-23350f9c1449" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T163933Z:bcb92277-70f2-4be6-b3c2-23350f9c1449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:40:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "88edcbba-ce4a-475f-b7bd-5b7b2b251b6d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "99fe4833-091d-4825-95ed-58d9701469ac" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164033Z:99fe4833-091d-4825-95ed-58d9701469ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:41:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e66191e4-9c2e-425e-81ab-0b62565515b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "c7365fb8-d47e-4167-aa4c-3c8773f4dfc4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164133Z:c7365fb8-d47e-4167-aa4c-3c8773f4dfc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:42:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e942e2a2-87b7-47b6-944a-6fe8d819e8fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "f1912f64-dfdf-492d-9e1a-e1a7cfb31b03" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164234Z:f1912f64-dfdf-492d-9e1a-e1a7cfb31b03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:43:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "db2839c6-228e-4eea-8581-8716d4d233d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "5f578596-3acd-4508-90c6-e5286e16a783" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164334Z:5f578596-3acd-4508-90c6-e5286e16a783" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:44:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3c6d7f8c-20cc-4d9d-bdb6-4c5be084f40b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f4082135-832b-4e1a-af95-aa43028ce4a2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164435Z:f4082135-832b-4e1a-af95-aa43028ce4a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:45:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1c1b8532-4924-4f7b-8307-6c6f5d6908cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "62abe446-0ea3-4f54-8b6d-4613be86c27c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164535Z:62abe446-0ea3-4f54-8b6d-4613be86c27c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:46:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7bdffea4-a3da-4b70-8198-696f239eeab2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f2c84a94-ec33-4415-b556-25a6a32cb0b3" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164636Z:f2c84a94-ec33-4415-b556-25a6a32cb0b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:47:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e0492d45-a23e-4ec7-8bd7-1d377bc2b4cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c5ade236-3259-4aac-97cb-e5c2e095436a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164736Z:c5ade236-3259-4aac-97cb-e5c2e095436a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:48:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2913bba2-266f-4183-b18a-173043acf47b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "28b87f44-60dd-4072-b4af-64a529a46d9e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164837Z:28b87f44-60dd-4072-b4af-64a529a46d9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:49:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "db4e3188-443c-411e-b4d2-920c9fdd2002" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "d23de8cf-8514-49d7-ac5a-0aaf58673a73" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T164937Z:d23de8cf-8514-49d7-ac5a-0aaf58673a73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:50:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5cd4fb1b-3ae8-4884-8e3f-2e55943f479e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b748d494-47bb-466f-b992-d770732c2df7" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165038Z:b748d494-47bb-466f-b992-d770732c2df7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:51:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0b00fdee-f3e2-4384-a3d9-b9eb5f373623" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "10eb3cd9-de87-4dbe-8462-c9d1807b2e41" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165138Z:10eb3cd9-de87-4dbe-8462-c9d1807b2e41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:52:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c237207a-c4e6-46ce-8a6d-634e4a89fc33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "9ad22227-7caa-491d-8be7-69f28b6cdb20" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165239Z:9ad22227-7caa-491d-8be7-69f28b6cdb20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:53:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d321c5c5-597d-419a-99dd-8a3bafccfb96" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e50f9623-e433-411f-b2cf-74fe80cddde9" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165339Z:e50f9623-e433-411f-b2cf-74fe80cddde9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:54:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "52823367-118d-4bb7-9d74-b25035e5af49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "db38958e-bf06-4f14-9e17-c1777d83f9b0" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165440Z:db38958e-bf06-4f14-9e17-c1777d83f9b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:55:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7b1dba5f-3a8e-4f7f-a51d-94f843a973dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "61834f5f-d426-472b-958f-559f4d8b9063" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165540Z:61834f5f-d426-472b-958f-559f4d8b9063" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:56:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a211b944-0fee-4923-8f36-ad3f43dbf5e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "99dd58a7-91fe-44e7-abca-15d5ce5ca7c1" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165641Z:99dd58a7-91fe-44e7-abca-15d5ce5ca7c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:57:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "11543382-fba9-4d4b-b22d-046f23a4bbd1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "50619ee5-221c-4e02-92cb-39513d517903" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165741Z:50619ee5-221c-4e02-92cb-39513d517903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:58:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "26c7cf17-0a66-4aab-901f-af20f31402a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "a1485aa3-c6f3-4fa5-8d45-b7c10839962b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165842Z:a1485aa3-c6f3-4fa5-8d45-b7c10839962b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 16:59:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5a57698e-be4a-47bf-88b5-19d5f14d8f8c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "98961b20-1e65-4714-b328-6df219c9e9f4" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T165942Z:98961b20-1e65-4714-b328-6df219c9e9f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:00:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "281a2605-6f81-425f-9c43-5f8347f4cf98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "e8ac7474-c687-43de-8e97-1b835bd6bd5e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170042Z:e8ac7474-c687-43de-8e97-1b835bd6bd5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:01:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e642a4eb-73e6-4cf5-8edb-0ee2090af8c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "961238d6-1abe-4c97-8e68-7430b5849506" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170143Z:961238d6-1abe-4c97-8e68-7430b5849506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:02:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9ce40b80-2f71-443e-b836-5a025f0bc457" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "128fe0ef-3e5e-4e02-87a9-4e7a5b59d782" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170243Z:128fe0ef-3e5e-4e02-87a9-4e7a5b59d782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:03:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7e2af21e-02ac-4dc8-965b-52209c16f381" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "672c4274-d634-4d1a-b90e-d84c5833cb60" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170344Z:672c4274-d634-4d1a-b90e-d84c5833cb60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:04:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e21a9f46-a706-45cc-a63a-a0c17d7dc09f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "06d14945-57ec-4259-b153-cb4087d9009e" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170444Z:06d14945-57ec-4259-b153-cb4087d9009e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:05:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b49db515-9f54-47e5-9654-381a02b4e9ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d69c46e2-9d5f-4a1a-a963-d9279de8b3f3" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170545Z:d69c46e2-9d5f-4a1a-a963-d9279de8b3f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:06:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "19cf9916-d0f3-4aa4-8a5b-ddc9e2b42985" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "3e9b0aef-3fc1-4f2a-ba60-9084651d4f5b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170645Z:3e9b0aef-3fc1-4f2a-ba60-9084651d4f5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:07:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2dcf2c54-cd0b-4142-885e-5f933f53759a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7c837cc1-12ef-4ddd-8369-d32319db8fbd" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170745Z:7c837cc1-12ef-4ddd-8369-d32319db8fbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:08:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "61fb1a8c-a64e-40db-b4c4-7b129cc79938" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f3c709e4-16f8-4306-875d-78b9a9ab683c" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170846Z:f3c709e4-16f8-4306-875d-78b9a9ab683c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:09:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "123f2003-f8c2-4d30-b308-d08ebd4c970b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "687bbc41-fdb5-4d2b-b2cb-c748c96c9597" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T170947Z:687bbc41-fdb5-4d2b-b2cb-c748c96c9597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:10:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a4cd97a6-eca6-4841-a11a-389ee5ce4d20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "2eaa7af0-602e-47b4-ac82-185c59f159bd" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171047Z:2eaa7af0-602e-47b4-ac82-185c59f159bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:11:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9277928d-2a47-4833-a945-38b172a74332" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "75eb0e04-4bd4-45fd-b803-b24dcc0ca149" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171148Z:75eb0e04-4bd4-45fd-b803-b24dcc0ca149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:12:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ce78a950-cd52-46ba-afff-a34d14571549" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "8f555818-c276-4e2b-9b5d-06a4da4a81f7" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171249Z:8f555818-c276-4e2b-9b5d-06a4da4a81f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:13:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "be92a592-6847-41f9-a636-fcedacf30244" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "1506e19f-700b-4b88-842a-d9c43471a617" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171349Z:1506e19f-700b-4b88-842a-d9c43471a617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:14:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7da3c029-c7c7-4849-9036-0ff22bcbc73e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "e4598799-e344-4672-b62d-c4f04e5e058b" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171449Z:e4598799-e344-4672-b62d-c4f04e5e058b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedInstanceAzureAsyncOperation/e7a48ffa-3e83-40c4-91b5-168a53143d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdhNDhmZmEtM2U4My00MGM0LTkxYjUtMTY4YTUzMTQzZDAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:15:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "035b2d48-dd14-4d57-a078-06b4fe71c887" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "d64b87b6-58d6-442c-b6fe-2506eea8c132" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171549Z:d64b87b6-58d6-442c-b6fe-2506eea8c132" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e7a48ffa-3e83-40c4-91b5-168a53143d02\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-10-26T14:26:02.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:15:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4a9bb07d-5db3-4e06-a0e6-ea9746e1800d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "fcbff1e3-0909-4620-bda4-d1eb1916b466" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171549Z:fcbff1e3-0909-4620-bda4-d1eb1916b466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "889" + ], + "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\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"manageddatabaserestorescenariotest-sqlcrudtest-5629.eus1e2edcc21eca6.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Network/virtualNetworks/sqlcrudtest-6682/subnets/MISubnet\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"eus1e2edcc21eca6\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629\",\r\n \"name\": \"manageddatabaserestorescenariotest-sqlcrudtest-5629\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebdebda3-c114-46eb-bf91-55c1ef25433d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:15:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/locations/eastus/managedDatabaseOperationResults/de9c26e4-6a35-4519-8b22-cdc6d4e3666c?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/locations/eastus/managedDatabaseAzureAsyncOperation/de9c26e4-6a35-4519-8b22-cdc6d4e3666c?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "de9c26e4-6a35-4519-8b22-cdc6d4e3666c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9148a302-e998-419c-baeb-83160c9ae1d8" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171551Z:9148a302-e998-419c-baeb-83160c9ae1d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2018-10-26T17:15:51.673Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/locations/eastus/managedDatabaseAzureAsyncOperation/de9c26e4-6a35-4519-8b22-cdc6d4e3666c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvbWFuYWdlZERhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kZTljMjZlNC02YTM1LTQ1MTktOGIyMi1jZGM2ZDRlMzY2NmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8b605a75-5112-4bd5-8046-24d242d00130" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "e8dd5a55-4585-4489-b849-cc65b1821a64" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171607Z:e8dd5a55-4585-4489-b849-cc65b1821a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"de9c26e4-6a35-4519-8b22-cdc6d4e3666c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T17:15:51.673Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/locations/eastus/managedDatabaseAzureAsyncOperation/de9c26e4-6a35-4519-8b22-cdc6d4e3666c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvbWFuYWdlZERhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kZTljMjZlNC02YTM1LTQ1MTktOGIyMi1jZGM2ZDRlMzY2NmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c051c1c5-a0c0-46ec-90c9-8bca2a4629be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "892eaf42-d93b-404c-a02c-968941a8cf8a" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171622Z:892eaf42-d93b-404c-a02c-968941a8cf8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"de9c26e4-6a35-4519-8b22-cdc6d4e3666c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-10-26T17:15:51.673Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/providers/Microsoft.Sql/locations/eastus/managedDatabaseAzureAsyncOperation/de9c26e4-6a35-4519-8b22-cdc6d4e3666c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvbWFuYWdlZERhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kZTljMjZlNC02YTM1LTQ1MTktOGIyMi1jZGM2ZDRlMzY2NmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a8d85ad8-1cc7-4200-8401-cb53c4463293" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "34c046ee-0382-49b1-bd9a-07c5551e8ade" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171637Z:34c046ee-0382-49b1-bd9a-07c5551e8ade" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"de9c26e4-6a35-4519-8b22-cdc6d4e3666c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-10-26T17:15:51.673Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f1a687e3-47a6-42ad-965c-8e440531e82c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "41e6f75c-d87d-4b7d-b293-8f3edfc3e1d2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171637Z:41e6f75c-d87d-4b7d-b293-8f3edfc3e1d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2018-10-26T17:15:56.11Z\",\r\n \"defaultSecondaryLocation\": \"westus\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547\",\r\n \"name\": \"manageddatabaserestorescenariotest-7547\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c075d78-3826-4bed-93bd-c9e3c91f368e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "52" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyOperationResults/f932c597-2084-42ca-9d83-a69fd54eed1e?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyAzureAsyncOperation/f932c597-2084-42ca-9d83-a69fd54eed1e?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "f932c597-2084-42ca-9d83-a69fd54eed1e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a8c85c0f-9d0a-4f37-aa37-fe9d91493aed" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171638Z:a8c85c0f-9d0a-4f37-aa37-fe9d91493aed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"AlterManagedDatabase\",\r\n \"startTime\": \"2018-10-26T17:16:38.22Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 3\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eef10325-105f-4d56-b62f-f3fda1e4e516" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "52" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyOperationResults/06e382ca-dc3e-4ac1-b8ce-8345916f6676?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyAzureAsyncOperation/06e382ca-dc3e-4ac1-b8ce-8345916f6676?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "06e382ca-dc3e-4ac1-b8ce-8345916f6676" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "f1f3b27d-7e68-425e-a1e3-7050d0fe4a99" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171641Z:f1f3b27d-7e68-425e-a1e3-7050d0fe4a99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"AlterManagedDatabase\",\r\n \"startTime\": \"2018-10-26T17:16:41.093Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 20\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fc55e8b-9773-4dd6-8d1c-d564428b411f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "53" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyOperationResults/43971f5b-cc19-45de-895b-9796add2cb45?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/locations/eastus/managedShortTermRetentionPolicyAzureAsyncOperation/43971f5b-cc19-45de-895b-9796add2cb45?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "43971f5b-cc19-45de-895b-9796add2cb45" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "33015dc4-2687-4101-83bf-81794bf2b4fc" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171644Z:33015dc4-2687-4101-83bf-81794bf2b4fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"AlterManagedDatabase\",\r\n \"startTime\": \"2018-10-26T17:16:44.14Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a175180b-8b39-4231-b8b5-d57f57c27bd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "12acc5aa-ca0a-45cb-87d3-e21b73387144" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "03cc575d-6f7b-46d2-ba1a-1999299d1d80" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171640Z:03cc575d-6f7b-46d2-ba1a-1999299d1d80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e01e2acf-5922-417a-9eea-daaa298201ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "65571aff-a923-424d-88f1-28e4c3a0c0c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "f0d09e14-0ab4-4139-ad56-805b0f135bfe" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171644Z:f0d09e14-0ab4-4139-ad56-805b0f135bfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL21hbmFnZWRkYXRhYmFzZXJlc3RvcmVzY2VuYXJpb3Rlc3Qtc3FsY3J1ZHRlc3QtNTYyOS9kYXRhYmFzZXMvbWFuYWdlZGRhdGFiYXNlcmVzdG9yZXNjZW5hcmlvdGVzdC03NTQ3L2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9de8fea-f2d2-4ae4-9c18-6933f3bd0844" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.22.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "538e7a06-e3c3-4a02-9121-9e3a1863552e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "dce5e09f-a3bb-4de7-9ebb-7139bffcfd16" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171647Z:dce5e09f-a3bb-4de7-9ebb-7139bffcfd16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 20\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-852/providers/Microsoft.Sql/managedInstances/manageddatabaserestorescenariotest-sqlcrudtest-5629/databases/manageddatabaserestorescenariotest-7547/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourcegroups/sqlcrudtest-852?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg1Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a794a701-7bce-4c16-8185-51dd3080677d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 26 Oct 2018 17:16:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg1Mi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "18741614-e850-4f41-a191-a287cd0fbff2" + ], + "x-ms-correlation-request-id": [ + "18741614-e850-4f41-a191-a287cd0fbff2" + ], + "x-ms-routing-request-id": [ + "UKNORTH:20181026T171648Z:18741614-e850-4f41-a191-a287cd0fbff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "CreateResourceGroup": [ + "sqlcrudtest-852" + ], + "CreateVirtualNetwork": [ + "sqlcrudtest-6682", + "sqlcrudtest-7558", + "sqlcrudtest-6385", + "sqlcrudtest-1587" + ], + "ShortTermRetentionOnLiveDatabase": [ + "sqlcrudtest-5629", + "manageddatabaserestorescenariotest-7547" + ] + }, + "Variables": { + "SubscriptionId": "a8c9a924-06c0-4bde-9788-e7b1370969e1", + "DefaultLocation": "east us", + "DefaultLocationId": "eastus" + } +} \ No newline at end of file