From db0143c6627c7585651ecc60c16441b329c23a2e Mon Sep 17 00:00:00 2001 From: "REDMOND\\emgu" Date: Mon, 15 Jul 2019 13:35:53 -0700 Subject: [PATCH 1/4] Failover database and elastic pools Net SDK --- .../mgmtmetadata/sql_resource-manager.txt | 14 + .../src/Generated/DatabasesOperations.cs | 209 +++ .../DatabasesOperationsExtensions.cs | 90 ++ .../src/Generated/ElasticPoolsOperations.cs | 209 +++ .../ElasticPoolsOperationsExtensions.cs | 90 ++ .../src/Generated/IDatabasesOperations.cs | 54 + .../src/Generated/IElasticPoolsOperations.cs | 54 + .../src/Microsoft.Azure.Management.Sql.csproj | 1 + .../tests/FailoverTests.cs | 82 ++ .../FailoverDatabase.json | 1030 ++++++++++++++ .../FailoverElasticPool.json | 1226 +++++++++++++++++ 11 files changed, 3059 insertions(+) create mode 100644 eng/mgmt/mgmtmetadata/sql_resource-manager.txt create mode 100644 sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs create mode 100644 sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json create mode 100644 sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json diff --git a/eng/mgmt/mgmtmetadata/sql_resource-manager.txt b/eng/mgmt/mgmtmetadata/sql_resource-manager.txt new file mode 100644 index 0000000000000..6f1370801ad1b --- /dev/null +++ b/eng/mgmt/mgmtmetadata/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/emgu-ms/azure-rest-api-specs/blob/failoverSwaggerChanges/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\GitCode\azure-sdk-for-net\sdk +2019-07-12 23:19:41 UTC +Azure-rest-api-specs repository information +GitHub fork: emgu-ms +Branch: failoverSwaggerChanges +Commit: 23564ccc16eb8eb3cc8acf94bb43bfcc01c44f30 +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperations.cs index 3547ef22c10e1..e0957584b94aa 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperations.cs @@ -1521,6 +1521,32 @@ internal DatabasesOperations(SqlManagementClient client) return _result; } + /// + /// Failovers 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 to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task FailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginFailoverWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Imports a bacpac into a new database. /// @@ -3414,6 +3440,189 @@ internal DatabasesOperations(SqlManagementClient client) return _result; } + /// + /// Failovers 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 to failover. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginFailoverWithHttpMessagesAsync(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 = "2018-06-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, "BeginFailover", 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}/failover").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("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Gets a list of databases. /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperationsExtensions.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperationsExtensions.cs index 379191f6dc607..05efc9b7afc18 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperationsExtensions.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/DatabasesOperationsExtensions.cs @@ -766,6 +766,51 @@ public static void Rename(this IDatabasesOperations operations, string resourceG (await operations.RenameWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Failovers 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 to failover. + /// + public static void Failover(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + operations.FailoverAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Failovers 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 to failover. + /// + /// + /// The cancellation token. + /// + public static async Task FailoverAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.FailoverWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Imports a bacpac into a new database. /// @@ -1218,6 +1263,51 @@ public static Database BeginResume(this IDatabasesOperations operations, string } } + /// + /// Failovers 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 to failover. + /// + public static void BeginFailover(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + operations.BeginFailoverAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Failovers 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 to failover. + /// + /// + /// The cancellation token. + /// + public static async Task BeginFailoverAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginFailoverWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Gets a list of databases. /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperations.cs index 356d963c213fa..59b55084f5557 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperations.cs @@ -961,6 +961,32 @@ internal ElasticPoolsOperations(SqlManagementClient client) return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task FailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginFailoverWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Creates or updates an elastic pool. /// @@ -1602,6 +1628,189 @@ internal ElasticPoolsOperations(SqlManagementClient client) return _result; } + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginFailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, 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 (elasticPoolName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-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("elasticPoolName", elasticPoolName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailover", 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}/elasticPools/{elasticPoolName}/failover").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Gets all elastic pools in a server. /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperationsExtensions.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperationsExtensions.cs index 7890c2907e5c1..c7e88cca78b53 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperationsExtensions.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/ElasticPoolsOperationsExtensions.cs @@ -374,6 +374,51 @@ public static ElasticPool Update(this IElasticPoolsOperations operations, string } } + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + public static void Failover(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + { + operations.FailoverAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); + } + + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// The cancellation token. + /// + public static async Task FailoverAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.FailoverWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Creates or updates an elastic pool. /// @@ -527,6 +572,51 @@ public static ElasticPool BeginUpdate(this IElasticPoolsOperations operations, s } } + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + public static void BeginFailover(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + { + operations.BeginFailoverAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); + } + + /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// The cancellation token. + /// + public static async Task BeginFailoverAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginFailoverWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Gets all elastic pools in a server. /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IDatabasesOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IDatabasesOperations.cs index 22c5de0e6e03b..853fbd359c1ba 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IDatabasesOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IDatabasesOperations.cs @@ -482,6 +482,33 @@ public partial interface IDatabasesOperations /// Task RenameWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ResourceMoveDefinition parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Failovers 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 to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task FailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Imports a bacpac into a new database. /// /// @@ -759,6 +786,33 @@ public partial interface IDatabasesOperations /// Task> BeginResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Failovers 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 to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginFailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets a list of databases. /// /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IElasticPoolsOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IElasticPoolsOperations.cs index fded1d437cb53..baeaed569f925 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IElasticPoolsOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/IElasticPoolsOperations.cs @@ -241,6 +241,33 @@ public partial interface IElasticPoolsOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPoolUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task FailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Creates or updates an elastic pool. /// /// @@ -334,6 +361,33 @@ public partial interface IElasticPoolsOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPoolUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Failovers an elastic pool. + /// + /// + /// 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 elastic pool to failover. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginFailoverWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets all elastic pools in a server. /// /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj index af4c84210d901..9eb0c945ac7ab 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj @@ -13,6 +13,7 @@ diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs new file mode 100644 index 0000000000000..a969d5cfcfa20 --- /dev/null +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Rest.Azure; +using System.Collections.Generic; +using System.Net; +using Xunit; + +namespace Sql.Tests +{ + public class FailoverTests + { + [Fact] + public async void FailoverDatabase() + { + using (SqlManagementTestContext context = new SqlManagementTestContext(this)) + { + ResourceGroup resourceGroup = context.CreateResourceGroup(); + SqlManagementClient sqlClient = context.GetClient(); + Server server = context.CreateServer(resourceGroup); + + // Create database + string dbName = SqlManagementTestUtilities.GenerateName(); + var dbInput = new Database() + { + Location = server.Location + }; + var db = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + Assert.NotNull(db); + + // Failover database + AzureOperationResponse failoverResponse = await sqlClient.Databases.BeginFailoverWithHttpMessagesAsync( + resourceGroup.Name, + server.Name, + dbName); + + Assert.Equal(HttpStatusCode.Accepted, failoverResponse.Response.StatusCode); + } + } + + [Fact] + public async void FailoverElasticPool() + { + using (SqlManagementTestContext context = new SqlManagementTestContext(this)) + { + ResourceGroup resourceGroup = context.CreateResourceGroup(); + SqlManagementClient sqlClient = context.GetClient(); + Server server = context.CreateServer(resourceGroup); + + // Create elastic pool + string epName = SqlManagementTestUtilities.GenerateName(); + var ep = sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName, new ElasticPool() + { + Location = server.Location + }); + Assert.NotNull(ep); + + // Create database in elastic pool + string dbName = SqlManagementTestUtilities.GenerateName(); + var dbInput = new Database() + { + Location = server.Location, + ElasticPoolId = ep.Id + }; + var db = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + Assert.NotNull(db); + + // Failover elastic pool + AzureOperationResponse failoverResponse = await sqlClient.ElasticPools.BeginFailoverWithHttpMessagesAsync( + resourceGroup.Name, + server.Name, + epName); + + Assert.Equal(HttpStatusCode.Accepted, failoverResponse.Response.StatusCode); + } + } + } +} diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json new file mode 100644 index 0000000000000..bb62ad82731c8 --- /dev/null +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json @@ -0,0 +1,1030 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-6781?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3ODE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-6781\": \"2019-07-15 18:32:05Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da726a0-3cd5-4fd7-8a94-fa8c90e1dc7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c029dc65-a3fd-4263-92b1-6ee06689a422" + ], + "x-ms-correlation-request-id": [ + "c029dc65-a3fd-4263-92b1-6ee06689a422" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183208Z:c029dc65-a3fd-4263-92b1-6ee06689a422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:07 GMT" + ], + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781\",\r\n \"name\": \"sqlcrudtest-6781\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-6781\": \"2019-07-15 18:32:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b74b7d89-1480-43c1-ad51-dfa2def520ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "7aaf87fa-67fc-4e35-8b7c-224200282e7a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f36f9bc0-d715-4692-a946-8b9493f16069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183210Z:f36f9bc0-d715-4692-a946-8b9493f16069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:09 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "393c8557-5e57-4d9b-b45d-e893a4054132" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "30ad02c8-927a-4f47-8bc0-745459e03200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183211Z:30ad02c8-927a-4f47-8bc0-745459e03200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "051d805d-6c6d-41f7-b7c1-b650b2571716" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b729151c-5452-4c7e-98b4-fb8833f38edf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183212Z:b729151c-5452-4c7e-98b4-fb8833f38edf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "ce39f0f6-9fea-4f16-9434-5436f18d85df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "cabdf9db-0152-4efa-8387-3e1c6ed4a8a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183213Z:cabdf9db-0152-4efa-8387-3e1c6ed4a8a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "43700c6e-f02a-41c0-8538-68cf46e71092" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "84de06e1-fbe4-46bb-9cfb-42c20251c4e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183214Z:84de06e1-fbe4-46bb-9cfb-42c20251c4e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "33049f52-6bd1-4098-9f1a-fe7e4bdc1c96" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d924a40a-d0d0-47a6-8821-2edc48fcdc60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183215Z:d924a40a-d0d0-47a6-8821-2edc48fcdc60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "fefe481c-1c18-4deb-a514-4038b81cf46e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "5dd1699a-f914-4b7c-a5a9-b3b999a776b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183236Z:5dd1699a-f914-4b7c-a5a9-b3b999a776b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "79096b77-8c63-48de-b2d0-5c3514688986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "bdd49d72-55be-4c09-b111-71c771ecae66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183256Z:bdd49d72-55be-4c09-b111-71c771ecae66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:55 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41f13e8d-1e68-4b0e-b9bc-86799d08f90d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "844b6ac2-c036-4f32-a681-a0b386fd631f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183256Z:844b6ac2-c036-4f32-a681-a0b386fd631f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:56 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-9727.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727\",\r\n \"name\": \"sqlcrudtest-9727\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "716014bf-f592-4d98-a82b-e8dfa957e896" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview" + ], + "x-ms-request-id": [ + "6415a3fe-b58d-4351-bcc5-c178d89762e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7b41eea8-c2b7-40e3-bbe0-bb56477ac6d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183257Z:7b41eea8-c2b7-40e3-bbe0-bb56477ac6d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:32:56 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzY0MTVhM2ZlLWI1OGQtNDM1MS1iY2M1LWMxNzhkODk3NjJlOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "070100a2-6f67-4bf2-ad97-e6970c3127f9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "ddc086c4-7235-4dff-9d7b-b486103dd868" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183312Z:ddc086c4-7235-4dff-9d7b-b486103dd868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:11 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6415a3fe-b58d-4351-bcc5-c178d89762e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzY0MTVhM2ZlLWI1OGQtNDM1MS1iY2M1LWMxNzhkODk3NjJlOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "66791dfc-0661-4c91-82cc-f615dae603fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "58c2be3f-4e62-4963-bbcc-27539abb42c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183327Z:58c2be3f-4e62-4963-bbcc-27539abb42c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:26 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6415a3fe-b58d-4351-bcc5-c178d89762e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7aae793c-6a6d-455a-960b-62cc5640eb87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "1a33ccb1-9b5f-4b9e-b3fb-adad9cae813c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183327Z:1a33ccb1-9b5f-4b9e-b3fb-adad9cae813c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:26 GMT" + ], + "Content-Length": [ + "990" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"77d45784-1c8f-4da0-ac56-54985c7cb13d\",\r\n \"creationDate\": \"2019-07-15T18:33:23.2Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2019-07-15T19:03:23.2Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973\",\r\n \"name\": \"sqlcrudtest-3973\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczL2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29af68a8-a389-4b7e-b4fc-267850d8e27d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/f910ec30-2062-48e5-9857-deeac63c1d1b?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/f910ec30-2062-48e5-9857-deeac63c1d1b?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "1ab96fd1-4e0c-4956-a503-b3633ee5bcc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "de5917ce-3d3f-4d69-80ba-0da7560ae46a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183327Z:de5917ce-3d3f-4d69-80ba-0da7560ae46a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:27 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-15T18:33:27.717Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-6781?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3ODE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a289798e-9bdd-4b6b-8876-e179bd37e1b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + ], + "x-ms-correlation-request-id": [ + "1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183329Z:1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "CreateResourceGroup": [ + "sqlcrudtest-6781" + ], + "CreateServer": [ + "sqlcrudtest-9727" + ], + "FailoverDatabase": [ + "sqlcrudtest-3973" + ] + }, + "Variables": { + "SubscriptionId": "148bffe3-0304-454b-8a25-ee196b761f18", + "DefaultLocation": "East US 2" + } +} \ No newline at end of file diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json new file mode 100644 index 0000000000000..3d396c53619ad --- /dev/null +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json @@ -0,0 +1,1226 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8179?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8179\": \"2019-07-15 18:33:33Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19591e14-290a-462e-9732-5e129e06a581" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "eac720da-599b-491b-8a16-4935e55d48cd" + ], + "x-ms-correlation-request-id": [ + "eac720da-599b-491b-8a16-4935e55d48cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183336Z:eac720da-599b-491b-8a16-4935e55d48cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:35 GMT" + ], + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179\",\r\n \"name\": \"sqlcrudtest-8179\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8179\": \"2019-07-15 18:33:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6431d9b1-f331-4dd7-932b-1c3cc6054b7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview" + ], + "x-ms-request-id": [ + "52671bc4-fa53-4e25-b144-abb3dfd8c351" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e3738084-cfb0-445d-b337-4969157d7143" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183337Z:e3738084-cfb0-445d-b337-4969157d7143" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:37 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "0d8eb05e-4007-4ad5-b56c-74f6a817e0d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8c741815-ac3d-4961-b9d1-1d3e106f1c13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183338Z:8c741815-ac3d-4961-b9d1-1d3e106f1c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "a3d4067f-01cf-40d9-ac91-f3d4b5c1f1a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "294bb5d6-5346-432f-8e50-b151fe89615a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183340Z:294bb5d6-5346-432f-8e50-b151fe89615a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "3d81039e-a086-48cc-84f0-abb633711ecb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "665f8d98-4020-4aa9-979b-51cd5ca83b48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183341Z:665f8d98-4020-4aa9-979b-51cd5ca83b48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "9986bf0a-a243-4702-a4bf-8af7c8e89145" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "0db2715e-967a-4fe4-80c1-e484937662a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183342Z:0db2715e-967a-4fe4-80c1-e484937662a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:41 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "9d5e504f-0f8f-4d2f-a5ab-b59843564755" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a814feb6-8590-4c24-ae0e-ad00d766dc5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183343Z:a814feb6-8590-4c24-ae0e-ad00d766dc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:33:42 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "0f93832e-f2b9-4fe4-b64d-55252f824e64" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "950c94ad-8a83-4f57-be24-70a56bf318e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183403Z:950c94ad-8a83-4f57-be24-70a56bf318e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3be5b9ce-1eee-46b0-9eff-bf03a5869bc1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "75783888-fd3c-4e1b-80e1-cb1d86e8b92d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183423Z:75783888-fd3c-4e1b-80e1-cb1d86e8b92d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b891330a-90b1-48a3-9e97-f212f5e78dfd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2e2a677e-b948-436b-9cac-bddba6c4bbb9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183423Z:2e2a677e-b948-436b-9cac-bddba6c4bbb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:23 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3513.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513\",\r\n \"name\": \"sqlcrudtest-3513\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8d2773c-713d-4441-92db-a7ce455af457" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview" + ], + "x-ms-request-id": [ + "61dfe98c-2acd-4e7b-821a-464e1c4f3d6c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "070546b7-40c2-4064-8605-0abc91817cdb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183424Z:070546b7-40c2-4064-8605-0abc91817cdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:24 GMT" + ], + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalElasticPool\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzYxZGZlOThjLTJhY2QtNGU3Yi04MjFhLTQ2NGUxYzRmM2Q2Yz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1c37ffd7-081c-44cc-bff1-2c5e5c893238" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "ed6835dd-cd31-4a74-9516-5abe0445a592" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183440Z:ed6835dd-cd31-4a74-9516-5abe0445a592" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"61dfe98c-2acd-4e7b-821a-464e1c4f3d6c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzYxZGZlOThjLTJhY2QtNGU3Yi04MjFhLTQ2NGUxYzRmM2Q2Yz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ce7fab20-7ef3-4cb5-95d5-8eb8f4047f57" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "be039cda-e831-45ad-86c3-e4de86995042" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183455Z:be039cda-e831-45ad-86c3-e4de86995042" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:54 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"61dfe98c-2acd-4e7b-821a-464e1c4f3d6c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "021e5e5e-7d66-4036-b043-00207cacbb32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d0a9b106-deb7-4775-89f2-ee9b44cf5cf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183455Z:d0a9b106-deb7-4775-89f2-ee9b44cf5cf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:55 GMT" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"vcore,pool\",\r\n \"properties\": {\r\n \"state\": \"Ready\",\r\n \"creationDate\": \"2019-07-15T18:34:24.997Z\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"perDatabaseSettings\": {\r\n \"minCapacity\": 0.0,\r\n \"maxCapacity\": 2.0\r\n },\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\",\r\n \"name\": \"sqlcrudtest-7218\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f72e8e9-6f85-4f3c-a47d-d5c3972a93b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "241" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview" + ], + "x-ms-request-id": [ + "5e580226-5170-491e-84f6-d40ebf9050f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a511d9e5-0959-4bbf-825c-3244510fb9e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183456Z:a511d9e5-0959-4bbf-825c-3244510fb9e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:34:56 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-15T18:34:56.59Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzVlNTgwMjI2LTUxNzAtNDkxZS04NGY2LWQ0MGViZjkwNTBmND9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7c90f77f-8c1d-4e1b-b92d-b0c0ce61453f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "33033270-db84-451d-99d9-533897f4f00d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183512Z:33033270-db84-451d-99d9-533897f4f00d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:35:11 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5e580226-5170-491e-84f6-d40ebf9050f4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:34:56.59Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37c5e7ed-f445-4a5f-a617-0f401b6d7896" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "50273a83-85dc-492d-b8fe-cec7bf4d56da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183512Z:50273a83-85dc-492d-b8fe-cec7bf4d56da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:35:11 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,user,vcore,pool\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\",\r\n \"status\": \"Online\",\r\n \"databaseId\": \"ff45dd18-a7d0-4051-bcbc-7121e9bc25e5\",\r\n \"creationDate\": \"2019-07-15T18:35:03.45Z\",\r\n \"currentServiceObjectiveName\": \"ElasticPool\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2019-07-15T19:05:03.45Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564\",\r\n \"name\": \"sqlcrudtest-564\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62a34fb2-1c37-41f9-b49a-70096ea32167" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/e0022897-dd32-49f6-97da-6bbd92540100?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/e0022897-dd32-49f6-97da-6bbd92540100?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "683b85e6-5f5d-43b6-abbd-ca76d89d7538" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3f2f7e97-ca01-42b6-b519-f8c26474e8a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183512Z:3f2f7e97-ca01-42b6-b519-f8c26474e8a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:35:11 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-15T18:35:12.34Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8179?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72796641-e187-4893-8c18-3462c22ef75e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "fb9afb9a-80b1-4a6e-981b-d13aa416522b" + ], + "x-ms-correlation-request-id": [ + "fb9afb9a-80b1-4a6e-981b-d13aa416522b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190715T183514Z:fb9afb9a-80b1-4a6e-981b-d13aa416522b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jul 2019 18:35:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "CreateResourceGroup": [ + "sqlcrudtest-8179" + ], + "CreateServer": [ + "sqlcrudtest-3513" + ], + "FailoverElasticPool": [ + "sqlcrudtest-7218", + "sqlcrudtest-564" + ] + }, + "Variables": { + "DefaultLocation": "East US 2", + "SubscriptionId": "148bffe3-0304-454b-8a25-ee196b761f18" + } +} \ No newline at end of file From 917ef45488fcacb4787b0bdc22fa42284dc2ae57 Mon Sep 17 00:00:00 2001 From: "REDMOND\\emgu" Date: Tue, 16 Jul 2019 11:47:35 -0700 Subject: [PATCH 2/4] Fixed tests and bumped up sdk version --- .../src/Microsoft.Azure.Management.Sql.csproj | 3 +- .../src/Properties/AssemblyInfo.cs | 2 +- .../tests/FailoverTests.cs | 12 +- .../FailoverDatabase.json | 384 ++++++++++------ .../FailoverElasticPool.json | 430 +++++++++++------- 5 files changed, 527 insertions(+), 304 deletions(-) diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj index 9eb0c945ac7ab..333a0cad6fa07 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj @@ -7,12 +7,11 @@ Microsoft.Azure.Management.Sql Azure SQL Management SDK library Microsoft.Azure.Management.Sql - 1.31.0-preview + 1.32.0-preview Microsoft Azure SQL Management;SQL;SQL Management; diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs index c0262242ac6d9..d82f08b367496 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/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.31.0.0")] +[assembly: AssemblyFileVersion("1.32.0.0")] diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs index a969d5cfcfa20..3c6ccbe42aac0 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/FailoverTests.cs @@ -15,7 +15,7 @@ namespace Sql.Tests public class FailoverTests { [Fact] - public async void FailoverDatabase() + public void FailoverDatabase() { using (SqlManagementTestContext context = new SqlManagementTestContext(this)) { @@ -33,17 +33,15 @@ public async void FailoverDatabase() Assert.NotNull(db); // Failover database - AzureOperationResponse failoverResponse = await sqlClient.Databases.BeginFailoverWithHttpMessagesAsync( + sqlClient.Databases.Failover( resourceGroup.Name, server.Name, dbName); - - Assert.Equal(HttpStatusCode.Accepted, failoverResponse.Response.StatusCode); } } [Fact] - public async void FailoverElasticPool() + public void FailoverElasticPool() { using (SqlManagementTestContext context = new SqlManagementTestContext(this)) { @@ -70,12 +68,10 @@ public async void FailoverElasticPool() Assert.NotNull(db); // Failover elastic pool - AzureOperationResponse failoverResponse = await sqlClient.ElasticPools.BeginFailoverWithHttpMessagesAsync( + sqlClient.ElasticPools.Failover( resourceGroup.Name, server.Name, epName); - - Assert.Equal(HttpStatusCode.Accepted, failoverResponse.Response.StatusCode); } } } diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json index bb62ad82731c8..e309046a6cd39 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-6781?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3ODE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-4509?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-6781\": \"2019-07-15 18:32:05Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-4509\": \"2019-07-16 17:49:45Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4da726a0-3cd5-4fd7-8a94-fa8c90e1dc7d" + "ef6ec950-b1a8-4a16-af1f-f9ab9f3ef89c" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c029dc65-a3fd-4263-92b1-6ee06689a422" + "c76bad72-6ced-47ef-9d85-5cbd649bd647" ], "x-ms-correlation-request-id": [ - "c029dc65-a3fd-4263-92b1-6ee06689a422" + "c76bad72-6ced-47ef-9d85-5cbd649bd647" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183208Z:c029dc65-a3fd-4263-92b1-6ee06689a422" + "WESTUS:20190716T174948Z:c76bad72-6ced-47ef-9d85-5cbd649bd647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:07 GMT" + "Tue, 16 Jul 2019 17:49:47 GMT" ], "Content-Length": [ "237" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781\",\r\n \"name\": \"sqlcrudtest-6781\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-6781\": \"2019-07-15 18:32:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509\",\r\n \"name\": \"sqlcrudtest-4509\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-4509\": \"2019-07-16 17:49:45Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b74b7d89-1480-43c1-ad51-dfa2def520ab" + "7beb4977-9629-46ff-bdb9-39f6f17aed72" ], "Accept-Language": [ "en-US" @@ -99,16 +99,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview" ], "x-ms-request-id": [ - "7aaf87fa-67fc-4e35-8b7c-224200282e7a" + "89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,10 +117,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "f36f9bc0-d715-4692-a946-8b9493f16069" + "64cabe7d-24ad-4a12-b0d8-69072a734564" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183210Z:f36f9bc0-d715-4692-a946-8b9493f16069" + "WESTUS:20190716T174950Z:64cabe7d-24ad-4a12-b0d8-69072a734564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,7 +129,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:09 GMT" + "Tue, 16 Jul 2019 17:49:50 GMT" ], "Content-Length": [ "74" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -168,7 +168,7 @@ "1" ], "x-ms-request-id": [ - "393c8557-5e57-4d9b-b45d-e893a4054132" + "f8975d55-67ec-4ebb-8c36-c8a211b0db20" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,10 +177,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "30ad02c8-927a-4f47-8bc0-745459e03200" + "22542304-f700-45c8-9fa3-dafb013669e6" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183211Z:30ad02c8-927a-4f47-8bc0-745459e03200" + "WESTUS:20190716T174951Z:22542304-f700-45c8-9fa3-dafb013669e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,7 +189,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:10 GMT" + "Tue, 16 Jul 2019 17:49:51 GMT" ], "Content-Length": [ "108" @@ -201,12 +201,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -228,7 +228,7 @@ "1" ], "x-ms-request-id": [ - "051d805d-6c6d-41f7-b7c1-b650b2571716" + "626d45a9-6bc7-4330-b36b-9529fda569ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,10 +237,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "b729151c-5452-4c7e-98b4-fb8833f38edf" + "a5468129-5704-4543-9b86-b0c31b2cdbf2" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183212Z:b729151c-5452-4c7e-98b4-fb8833f38edf" + "WESTUS:20190716T174952Z:a5468129-5704-4543-9b86-b0c31b2cdbf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:12 GMT" + "Tue, 16 Jul 2019 17:49:52 GMT" ], "Content-Length": [ "108" @@ -261,12 +261,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,7 +288,7 @@ "1" ], "x-ms-request-id": [ - "ce39f0f6-9fea-4f16-9434-5436f18d85df" + "b3d95ccb-1995-4c96-acac-c826ef01e2c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,10 +297,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "cabdf9db-0152-4efa-8387-3e1c6ed4a8a2" + "d5f92847-a1f5-4033-a4fb-bc180b3152c4" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183213Z:cabdf9db-0152-4efa-8387-3e1c6ed4a8a2" + "WESTUS:20190716T174953Z:d5f92847-a1f5-4033-a4fb-bc180b3152c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:13 GMT" + "Tue, 16 Jul 2019 17:49:53 GMT" ], "Content-Length": [ "108" @@ -321,12 +321,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -348,7 +348,7 @@ "1" ], "x-ms-request-id": [ - "43700c6e-f02a-41c0-8538-68cf46e71092" + "e924bda1-d879-4b0f-88e1-377e824b0e3b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "84de06e1-fbe4-46bb-9cfb-42c20251c4e8" + "61144391-1ad1-4479-a863-787a916b5017" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183214Z:84de06e1-fbe4-46bb-9cfb-42c20251c4e8" + "WESTUS:20190716T174954Z:61144391-1ad1-4479-a863-787a916b5017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:14 GMT" + "Tue, 16 Jul 2019 17:49:54 GMT" ], "Content-Length": [ "108" @@ -381,12 +381,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -408,7 +408,7 @@ "20" ], "x-ms-request-id": [ - "33049f52-6bd1-4098-9f1a-fe7e4bdc1c96" + "fdb33257-3949-4eb0-9cd2-5a0af6adc0ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -417,10 +417,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "d924a40a-d0d0-47a6-8821-2edc48fcdc60" + "8e7a5112-73eb-4236-b7bd-51d70d15d9b2" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183215Z:d924a40a-d0d0-47a6-8821-2edc48fcdc60" + "WESTUS:20190716T174955Z:8e7a5112-73eb-4236-b7bd-51d70d15d9b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:15 GMT" + "Tue, 16 Jul 2019 17:49:55 GMT" ], "Content-Length": [ "108" @@ -441,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -468,19 +468,19 @@ "20" ], "x-ms-request-id": [ - "fefe481c-1c18-4deb-a514-4038b81cf46e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a36c89c7-bf0c-40ae-b9aa-a7b72406272e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "5dd1699a-f914-4b7c-a5a9-b3b999a776b6" + "2dcda133-c07e-449d-8e04-fbe12a448665" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183236Z:5dd1699a-f914-4b7c-a5a9-b3b999a776b6" + "WESTUS:20190716T175015Z:2dcda133-c07e-449d-8e04-fbe12a448665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:35 GMT" + "Tue, 16 Jul 2019 17:50:15 GMT" ], "Content-Length": [ "108" @@ -501,12 +501,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/7aaf87fa-67fc-4e35-8b7c-224200282e7a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83YWFmODdmYS02N2ZjLTRlMzUtOGI3Yy0yMjQyMDAyODJlN2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -528,7 +528,7 @@ "15" ], "x-ms-request-id": [ - "79096b77-8c63-48de-b2d0-5c3514688986" + "7a0cf4a3-ad81-446d-98a4-d7a1a28aa392" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -537,10 +537,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "bdd49d72-55be-4c09-b111-71c771ecae66" + "559e0fab-f54c-4035-b468-aae0a69bae8a" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183256Z:bdd49d72-55be-4c09-b111-71c771ecae66" + "WESTUS:20190716T175036Z:559e0fab-f54c-4035-b468-aae0a69bae8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,7 +549,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:55 GMT" + "Tue, 16 Jul 2019 17:50:35 GMT" ], "Content-Length": [ "107" @@ -561,12 +561,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7aaf87fa-67fc-4e35-8b7c-224200282e7a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:32:09.887Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -585,7 +585,7 @@ "no-cache" ], "x-ms-request-id": [ - "41f13e8d-1e68-4b0e-b9bc-86799d08f90d" + "c5411d07-fb28-4185-af6f-67ebad2058da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -594,10 +594,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "844b6ac2-c036-4f32-a681-a0b386fd631f" + "62ed89dd-a687-43f8-b2f6-9153e2f7d68b" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183256Z:844b6ac2-c036-4f32-a681-a0b386fd631f" + "WESTUS:20190716T175036Z:62ed89dd-a687-43f8-b2f6-9153e2f7d68b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:56 GMT" + "Tue, 16 Jul 2019 17:50:35 GMT" ], "Content-Length": [ "393" @@ -618,17 +618,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-9727.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727\",\r\n \"name\": \"sqlcrudtest-9727\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6713.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713\",\r\n \"name\": \"sqlcrudtest-6713\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "716014bf-f592-4d98-a82b-e8dfa957e896" + "3853d9ad-d989-469e-a172-b1b3d39bff82" ], "Accept-Language": [ "en-US" @@ -654,16 +654,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "6415a3fe-b58d-4351-bcc5-c178d89762e8" + "424fbd30-038d-45b7-a8d7-80d651c36535" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -672,10 +672,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "7b41eea8-c2b7-40e3-bbe0-bb56477ac6d0" + "3f1e12ad-cfae-42bf-a57d-240c3e771362" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183257Z:7b41eea8-c2b7-40e3-bbe0-bb56477ac6d0" + "WESTUS:20190716T175037Z:3f1e12ad-cfae-42bf-a57d-240c3e771362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,10 +684,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:32:56 GMT" + "Tue, 16 Jul 2019 17:50:36 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,12 +696,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzY0MTVhM2ZlLWI1OGQtNDM1MS1iY2M1LWMxNzhkODk3NjJlOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQyNGZiZDMwLTAzOGQtNDViNy1hOGQ3LTgwZDY1MWMzNjUzNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -723,7 +723,7 @@ "15" ], "x-ms-request-id": [ - "070100a2-6f67-4bf2-ad97-e6970c3127f9" + "cb16dc70-4aae-4366-b2d1-0daf05d68aab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -732,10 +732,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "ddc086c4-7235-4dff-9d7b-b486103dd868" + "d8efefd8-1d84-4bb2-9434-fed97917a2db" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183312Z:ddc086c4-7235-4dff-9d7b-b486103dd868" + "WESTUS:20190716T175052Z:d8efefd8-1d84-4bb2-9434-fed97917a2db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,10 +744,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:11 GMT" + "Tue, 16 Jul 2019 17:50:51 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6415a3fe-b58d-4351-bcc5-c178d89762e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"424fbd30-038d-45b7-a8d7-80d651c36535\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/6415a3fe-b58d-4351-bcc5-c178d89762e8?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzY0MTVhM2ZlLWI1OGQtNDM1MS1iY2M1LWMxNzhkODk3NjJlOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQyNGZiZDMwLTAzOGQtNDViNy1hOGQ3LTgwZDY1MWMzNjUzNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -783,7 +783,7 @@ "15" ], "x-ms-request-id": [ - "66791dfc-0661-4c91-82cc-f615dae603fb" + "e5fe2768-53a4-4f8d-82b3-e27d68ecbf8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,10 +792,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "58c2be3f-4e62-4963-bbcc-27539abb42c6" + "e7ecff58-64b4-4e50-a9c0-ad7902e51e06" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183327Z:58c2be3f-4e62-4963-bbcc-27539abb42c6" + "WESTUS:20190716T175107Z:e7ecff58-64b4-4e50-a9c0-ad7902e51e06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:26 GMT" + "Tue, 16 Jul 2019 17:51:07 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,12 +816,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6415a3fe-b58d-4351-bcc5-c178d89762e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:32:56.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"424fbd30-038d-45b7-a8d7-80d651c36535\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -840,7 +840,7 @@ "no-cache" ], "x-ms-request-id": [ - "7aae793c-6a6d-455a-960b-62cc5640eb87" + "6694c296-e742-4177-8afa-bb32308e9c0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -849,10 +849,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "1a33ccb1-9b5f-4b9e-b3fb-adad9cae813c" + "7e185524-c581-4488-b1bc-782eb3dff651" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183327Z:1a33ccb1-9b5f-4b9e-b3fb-adad9cae813c" + "WESTUS:20190716T175107Z:7e185524-c581-4488-b1bc-782eb3dff651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,10 +861,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:26 GMT" + "Tue, 16 Jul 2019 17:51:07 GMT" ], "Content-Length": [ - "990" + "994" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,17 +873,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"77d45784-1c8f-4da0-ac56-54985c7cb13d\",\r\n \"creationDate\": \"2019-07-15T18:33:23.2Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2019-07-15T19:03:23.2Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973\",\r\n \"name\": \"sqlcrudtest-3973\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5b0a11d9-1d1f-4911-9773-81fdb32fc6d8\",\r\n \"creationDate\": \"2019-07-16T17:51:02.887Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2019-07-16T18:21:02.887Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759\",\r\n \"name\": \"sqlcrudtest-6759\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/servers/sqlcrudtest-9727/databases/sqlcrudtest-3973/failover?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05NzI3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTczL2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29af68a8-a389-4b7e-b4fc-267850d8e27d" + "3a3b8b15-b5d1-48c4-9050-cb13eb6f94ed" ], "Accept-Language": [ "en-US" @@ -903,16 +903,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/f910ec30-2062-48e5-9857-deeac63c1d1b?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-6781/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/f910ec30-2062-48e5-9857-deeac63c1d1b?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "1ab96fd1-4e0c-4956-a503-b3633ee5bcc3" + "507605c2-dd4f-4f0c-837b-f442f0a2ea53" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -921,10 +921,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "de5917ce-3d3f-4d69-80ba-0da7560ae46a" + "70745f66-405d-4b0d-9400-f920623e1152" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183327Z:de5917ce-3d3f-4d69-80ba-0da7560ae46a" + "WESTUS:20190716T175108Z:70745f66-405d-4b0d-9400-f920623e1152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +933,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:27 GMT" + "Tue, 16 Jul 2019 17:51:08 GMT" ], "Content-Length": [ - "89" + "88" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,17 +945,131 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-15T18:33:27.717Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-16T17:51:08.34Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-6781?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3ODE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2ZhYzRmYWY1LTA2NDgtNGVlYy05NTA1LTY4ZWFhYzBlZjUxYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0e6499bd-f9af-4ee2-a40b-e58a0d80dc2b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4c938f2b-ed0a-4032-925c-bb4afa9706a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190716T175123Z:4c938f2b-ed0a-4032-925c-bb4afa9706a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jul 2019 17:51:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"fac4faf5-0648-4eec-9505-68eaac0ef51c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:51:08.433Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzL2ZhYzRmYWY1LTA2NDgtNGVlYy05NTA1LTY4ZWFhYzBlZjUxYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1ba84e0e-0917-4861-9b3c-3830f8cc8e6e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "13c9efb8-fc90-453e-bea1-9ed7ffad9464" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190716T175124Z:13c9efb8-fc90-453e-bea1-9ed7ffad9464" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jul 2019 17:51:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-4509?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a289798e-9bdd-4b6b-8876-e179bd37e1b6" + "2d2426f3-1e51-46d7-a4bc-b16dc1433261" ], "Accept-Language": [ "en-US" @@ -975,7 +1089,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ1MDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -984,13 +1098,13 @@ "14999" ], "x-ms-request-id": [ - "1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + "23ce7433-81a0-452c-8649-2ae8cab8e612" ], "x-ms-correlation-request-id": [ - "1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + "23ce7433-81a0-452c-8649-2ae8cab8e612" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183329Z:1c0e4842-6376-4bd2-b06a-31d1ee6951f6" + "WESTUS:20190716T175126Z:23ce7433-81a0-452c-8649-2ae8cab8e612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,7 +1113,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:29 GMT" + "Tue, 16 Jul 2019 17:51:25 GMT" ], "Expires": [ "-1" @@ -1014,13 +1128,13 @@ ], "Names": { "CreateResourceGroup": [ - "sqlcrudtest-6781" + "sqlcrudtest-4509" ], "CreateServer": [ - "sqlcrudtest-9727" + "sqlcrudtest-6713" ], "FailoverDatabase": [ - "sqlcrudtest-3973" + "sqlcrudtest-6759" ] }, "Variables": { diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json index 3d396c53619ad..0cb9cc392387d 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8179?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8665?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg2NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8179\": \"2019-07-15 18:33:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8665\": \"2019-07-16 17:51:30Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19591e14-290a-462e-9732-5e129e06a581" + "e75af3c2-66f0-4c67-af59-d98ac1bb4329" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "eac720da-599b-491b-8a16-4935e55d48cd" + "2aed41c7-659a-4255-8af3-e05e14998d68" ], "x-ms-correlation-request-id": [ - "eac720da-599b-491b-8a16-4935e55d48cd" + "2aed41c7-659a-4255-8af3-e05e14998d68" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183336Z:eac720da-599b-491b-8a16-4935e55d48cd" + "WESTUS:20190716T175133Z:2aed41c7-659a-4255-8af3-e05e14998d68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:35 GMT" + "Tue, 16 Jul 2019 17:51:33 GMT" ], "Content-Length": [ "237" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179\",\r\n \"name\": \"sqlcrudtest-8179\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8179\": \"2019-07-15 18:33:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665\",\r\n \"name\": \"sqlcrudtest-8665\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8665\": \"2019-07-16 17:51:30Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6431d9b1-f331-4dd7-932b-1c3cc6054b7f" + "348e3cd7-1840-45f3-8c01-e2bb0b6c54f6" ], "Accept-Language": [ "en-US" @@ -99,16 +99,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview" ], "x-ms-request-id": [ - "52671bc4-fa53-4e25-b144-abb3dfd8c351" + "481fe32f-204e-4e67-b970-20c8fc9116e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,10 +117,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "e3738084-cfb0-445d-b337-4969157d7143" + "2ec68dec-9036-4b25-9f8b-a766ee11914b" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183337Z:e3738084-cfb0-445d-b337-4969157d7143" + "WESTUS:20190716T175134Z:2ec68dec-9036-4b25-9f8b-a766ee11914b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,7 +129,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:37 GMT" + "Tue, 16 Jul 2019 17:51:34 GMT" ], "Content-Length": [ "74" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -168,7 +168,7 @@ "1" ], "x-ms-request-id": [ - "0d8eb05e-4007-4ad5-b56c-74f6a817e0d6" + "594cb942-2561-4771-9946-41e927dc6c0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,10 +177,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "8c741815-ac3d-4961-b9d1-1d3e106f1c13" + "c5411f02-ac87-4ee6-9b7c-62421575848d" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183338Z:8c741815-ac3d-4961-b9d1-1d3e106f1c13" + "WESTUS:20190716T175136Z:c5411f02-ac87-4ee6-9b7c-62421575848d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,7 +189,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:38 GMT" + "Tue, 16 Jul 2019 17:51:35 GMT" ], "Content-Length": [ "108" @@ -201,12 +201,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -228,7 +228,7 @@ "1" ], "x-ms-request-id": [ - "a3d4067f-01cf-40d9-ac91-f3d4b5c1f1a2" + "09828c91-770d-4c31-9ff6-09c9cb932eb3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,10 +237,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "294bb5d6-5346-432f-8e50-b151fe89615a" + "cd3893e4-053c-4bd6-989a-ccca70d457fe" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183340Z:294bb5d6-5346-432f-8e50-b151fe89615a" + "WESTUS:20190716T175137Z:cd3893e4-053c-4bd6-989a-ccca70d457fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:39 GMT" + "Tue, 16 Jul 2019 17:51:36 GMT" ], "Content-Length": [ "108" @@ -261,12 +261,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,7 +288,7 @@ "1" ], "x-ms-request-id": [ - "3d81039e-a086-48cc-84f0-abb633711ecb" + "56c8599e-f8d7-4ef4-ae8c-0d23cb73ca41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,10 +297,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "665f8d98-4020-4aa9-979b-51cd5ca83b48" + "a17a5256-8d87-4121-9eb6-23e0d9a85316" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183341Z:665f8d98-4020-4aa9-979b-51cd5ca83b48" + "WESTUS:20190716T175138Z:a17a5256-8d87-4121-9eb6-23e0d9a85316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:40 GMT" + "Tue, 16 Jul 2019 17:51:38 GMT" ], "Content-Length": [ "108" @@ -321,12 +321,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -348,7 +348,7 @@ "1" ], "x-ms-request-id": [ - "9986bf0a-a243-4702-a4bf-8af7c8e89145" + "65683a7b-5ca7-4c28-9e51-ae936865af85" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "0db2715e-967a-4fe4-80c1-e484937662a9" + "5b9694f3-c1a5-4371-9af2-7b26eeed0eba" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183342Z:0db2715e-967a-4fe4-80c1-e484937662a9" + "WESTUS:20190716T175139Z:5b9694f3-c1a5-4371-9af2-7b26eeed0eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:41 GMT" + "Tue, 16 Jul 2019 17:51:39 GMT" ], "Content-Length": [ "108" @@ -381,12 +381,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -408,7 +408,7 @@ "20" ], "x-ms-request-id": [ - "9d5e504f-0f8f-4d2f-a5ab-b59843564755" + "5c2457f5-b581-4268-a4f9-e403ad46ee59" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -417,10 +417,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "a814feb6-8590-4c24-ae0e-ad00d766dc5a" + "b2f1a286-a999-4262-9ac6-85684d1d98b8" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183343Z:a814feb6-8590-4c24-ae0e-ad00d766dc5a" + "WESTUS:20190716T175140Z:b2f1a286-a999-4262-9ac6-85684d1d98b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:33:42 GMT" + "Tue, 16 Jul 2019 17:51:40 GMT" ], "Content-Length": [ "108" @@ -441,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -468,7 +468,7 @@ "20" ], "x-ms-request-id": [ - "0f93832e-f2b9-4fe4-b64d-55252f824e64" + "de40be47-0c5b-4d98-beb5-5d1df65dbc5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "950c94ad-8a83-4f57-be24-70a56bf318e9" + "4876439a-491b-48b0-9f7d-7880d271f530" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183403Z:950c94ad-8a83-4f57-be24-70a56bf318e9" + "WESTUS:20190716T175200Z:4876439a-491b-48b0-9f7d-7880d271f530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:02 GMT" + "Tue, 16 Jul 2019 17:52:00 GMT" ], "Content-Length": [ "108" @@ -501,12 +501,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/52671bc4-fa53-4e25-b144-abb3dfd8c351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi81MjY3MWJjNC1mYTUzLTRlMjUtYjE0NC1hYmIzZGZkOGMzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -528,19 +528,19 @@ "15" ], "x-ms-request-id": [ - "3be5b9ce-1eee-46b0-9eff-bf03a5869bc1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "ed44181b-fb15-4a6d-b642-e6354ae0e8e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "75783888-fd3c-4e1b-80e1-cb1d86e8b92d" + "8e462f55-83c0-46e8-8b36-4218fd76d15e" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183423Z:75783888-fd3c-4e1b-80e1-cb1d86e8b92d" + "WESTUS:20190716T175220Z:8e462f55-83c0-46e8-8b36-4218fd76d15e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,7 +549,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:23 GMT" + "Tue, 16 Jul 2019 17:52:20 GMT" ], "Content-Length": [ "107" @@ -561,12 +561,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52671bc4-fa53-4e25-b144-abb3dfd8c351\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:33:37.497Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -585,7 +585,7 @@ "no-cache" ], "x-ms-request-id": [ - "b891330a-90b1-48a3-9e97-f212f5e78dfd" + "4a4e433d-d5e5-480d-b20d-265336988b23" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -594,10 +594,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "2e2a677e-b948-436b-9cac-bddba6c4bbb9" + "978aca1b-8397-4137-acdd-645d576d0feb" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183423Z:2e2a677e-b948-436b-9cac-bddba6c4bbb9" + "WESTUS:20190716T175220Z:978aca1b-8397-4137-acdd-645d576d0feb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:23 GMT" + "Tue, 16 Jul 2019 17:52:20 GMT" ], "Content-Length": [ "393" @@ -618,17 +618,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3513.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513\",\r\n \"name\": \"sqlcrudtest-3513\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2684.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684\",\r\n \"name\": \"sqlcrudtest-2684\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8d2773c-713d-4441-92db-a7ce455af457" + "4e2600c3-88bb-40f6-a522-c7b27b472338" ], "Accept-Language": [ "en-US" @@ -654,16 +654,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "61dfe98c-2acd-4e7b-821a-464e1c4f3d6c" + "b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -672,10 +672,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "070546b7-40c2-4064-8605-0abc91817cdb" + "bba26a4f-ed30-459a-b5f2-002e8de8d842" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183424Z:070546b7-40c2-4064-8605-0abc91817cdb" + "WESTUS:20190716T175221Z:bba26a4f-ed30-459a-b5f2-002e8de8d842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,7 +684,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:24 GMT" + "Tue, 16 Jul 2019 17:52:20 GMT" ], "Content-Length": [ "79" @@ -696,12 +696,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalElasticPool\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalElasticPool\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzYxZGZlOThjLTJhY2QtNGU3Yi04MjFhLTQ2NGUxYzRmM2Q2Yz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2I2ZDM4ZTU4LTE2OTgtNGViZi1iN2JkLTRlYjllM2RjOWZlMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -723,7 +723,7 @@ "15" ], "x-ms-request-id": [ - "1c37ffd7-081c-44cc-bff1-2c5e5c893238" + "d9e4d2a1-08fb-4185-b565-5325a4b46558" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -732,10 +732,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "ed6835dd-cd31-4a74-9516-5abe0445a592" + "6ead92c5-9cfe-4017-adfd-45ad8c894937" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183440Z:ed6835dd-cd31-4a74-9516-5abe0445a592" + "WESTUS:20190716T175236Z:6ead92c5-9cfe-4017-adfd-45ad8c894937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +744,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:39 GMT" + "Tue, 16 Jul 2019 17:52:36 GMT" ], "Content-Length": [ "108" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"61dfe98c-2acd-4e7b-821a-464e1c4f3d6c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/61dfe98c-2acd-4e7b-821a-464e1c4f3d6c?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzYxZGZlOThjLTJhY2QtNGU3Yi04MjFhLTQ2NGUxYzRmM2Q2Yz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2I2ZDM4ZTU4LTE2OTgtNGViZi1iN2JkLTRlYjllM2RjOWZlMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -783,7 +783,7 @@ "15" ], "x-ms-request-id": [ - "ce7fab20-7ef3-4cb5-95d5-8eb8f4047f57" + "685e0856-b9e8-402c-be0e-255973ce7466" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" @@ -792,10 +792,10 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "be039cda-e831-45ad-86c3-e4de86995042" + "4dbaf8a3-c1fb-4ff0-9baf-80435fb389b7" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183455Z:be039cda-e831-45ad-86c3-e4de86995042" + "WESTUS:20190716T175251Z:4dbaf8a3-c1fb-4ff0-9baf-80435fb389b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +804,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:54 GMT" + "Tue, 16 Jul 2019 17:52:51 GMT" ], "Content-Length": [ "107" @@ -816,12 +816,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"61dfe98c-2acd-4e7b-821a-464e1c4f3d6c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:34:24.777Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -840,7 +840,7 @@ "no-cache" ], "x-ms-request-id": [ - "021e5e5e-7d66-4036-b043-00207cacbb32" + "1a7ac1fd-f513-4f18-afc7-82a7de19e629" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -849,10 +849,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "d0a9b106-deb7-4775-89f2-ee9b44cf5cf2" + "ea582024-575b-4efb-971b-77912a624ee7" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183455Z:d0a9b106-deb7-4775-89f2-ee9b44cf5cf2" + "WESTUS:20190716T175252Z:ea582024-575b-4efb-971b-77912a624ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,7 +861,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:55 GMT" + "Tue, 16 Jul 2019 17:52:51 GMT" ], "Content-Length": [ "580" @@ -873,17 +873,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"vcore,pool\",\r\n \"properties\": {\r\n \"state\": \"Ready\",\r\n \"creationDate\": \"2019-07-15T18:34:24.997Z\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"perDatabaseSettings\": {\r\n \"minCapacity\": 0.0,\r\n \"maxCapacity\": 2.0\r\n },\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\",\r\n \"name\": \"sqlcrudtest-7218\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"vcore,pool\",\r\n \"properties\": {\r\n \"state\": \"Ready\",\r\n \"creationDate\": \"2019-07-16T17:52:21.493Z\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"perDatabaseSettings\": {\r\n \"minCapacity\": 0.0,\r\n \"maxCapacity\": 2.0\r\n },\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\",\r\n \"name\": \"sqlcrudtest-2156\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTAzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6f72e8e9-6f85-4f3c-a47d-d5c3972a93b4" + "3800416f-1e14-49d6-94f4-e2e3b37a1d6f" ], "Accept-Language": [ "en-US" @@ -909,16 +909,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "5e580226-5170-491e-84f6-d40ebf9050f4" + "94406969-0d52-412e-9832-7960c3b9bda1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -927,10 +927,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "a511d9e5-0959-4bbf-825c-3244510fb9e3" + "5aca24f0-36a8-4687-a216-33878f10fc61" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183456Z:a511d9e5-0959-4bbf-825c-3244510fb9e3" + "WESTUS:20190716T175252Z:5aca24f0-36a8-4687-a216-33878f10fc61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,7 +939,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:34:56 GMT" + "Tue, 16 Jul 2019 17:52:52 GMT" ], "Content-Length": [ "75" @@ -951,12 +951,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-15T18:34:56.59Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-16T17:52:52.62Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/5e580226-5170-491e-84f6-d40ebf9050f4?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzVlNTgwMjI2LTUxNzAtNDkxZS04NGY2LWQ0MGViZjkwNTBmND9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzk0NDA2OTY5LTBkNTItNDEyZS05ODMyLTc5NjBjM2I5YmRhMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,7 +978,7 @@ "15" ], "x-ms-request-id": [ - "7c90f77f-8c1d-4e1b-b92d-b0c0ce61453f" + "f56a0068-e4e8-4a52-a258-2c30d140e873" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -987,10 +987,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "33033270-db84-451d-99d9-533897f4f00d" + "ec426bb2-03d8-4800-8ee1-95cb3b0bdebb" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183512Z:33033270-db84-451d-99d9-533897f4f00d" + "WESTUS:20190716T175308Z:ec426bb2-03d8-4800-8ee1-95cb3b0bdebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,7 +999,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:35:11 GMT" + "Tue, 16 Jul 2019 17:53:08 GMT" ], "Content-Length": [ "106" @@ -1011,12 +1011,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e580226-5170-491e-84f6-d40ebf9050f4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-15T18:34:56.59Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"94406969-0d52-412e-9832-7960c3b9bda1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:52:52.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTAzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "no-cache" ], "x-ms-request-id": [ - "37c5e7ed-f445-4a5f-a617-0f401b6d7896" + "7ba9eaf2-aca6-4898-985a-3f5cdacf7201" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1044,10 +1044,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "50273a83-85dc-492d-b8fe-cec7bf4d56da" + "bb3c4d07-5a76-4b1a-83f8-b7a750e2fedf" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183512Z:50273a83-85dc-492d-b8fe-cec7bf4d56da" + "WESTUS:20190716T175308Z:bb3c4d07-5a76-4b1a-83f8-b7a750e2fedf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,10 +1056,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:35:11 GMT" + "Tue, 16 Jul 2019 17:53:08 GMT" ], "Content-Length": [ - "1114" + "1116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1068,17 +1068,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,user,vcore,pool\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218\",\r\n \"status\": \"Online\",\r\n \"databaseId\": \"ff45dd18-a7d0-4051-bcbc-7121e9bc25e5\",\r\n \"creationDate\": \"2019-07-15T18:35:03.45Z\",\r\n \"currentServiceObjectiveName\": \"ElasticPool\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2019-07-15T19:05:03.45Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/databases/sqlcrudtest-564\",\r\n \"name\": \"sqlcrudtest-564\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,user,vcore,pool\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\",\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cd7f57d6-f24e-41a8-b0a5-637c16d69f3a\",\r\n \"creationDate\": \"2019-07-16T17:52:59.98Z\",\r\n \"currentServiceObjectiveName\": \"ElasticPool\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2019-07-16T18:22:59.98Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903\",\r\n \"name\": \"sqlcrudtest-3903\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/servers/sqlcrudtest-3513/elasticPools/sqlcrudtest-7218/failover?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNTEzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC03MjE4L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62a34fb2-1c37-41f9-b49a-70096ea32167" + "a0940fe5-4715-49cd-9e2a-6c03d2eb026e" ], "Accept-Language": [ "en-US" @@ -1098,16 +1098,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/e0022897-dd32-49f6-97da-6bbd92540100?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8179/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/e0022897-dd32-49f6-97da-6bbd92540100?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "683b85e6-5f5d-43b6-abbd-ca76d89d7538" + "60fb34b7-8f68-47c8-8514-33acb5107869" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1116,10 +1116,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "3f2f7e97-ca01-42b6-b519-f8c26474e8a9" + "c1e0cf2e-6b65-4a65-a433-933d24e0bd5c" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183512Z:3f2f7e97-ca01-42b6-b519-f8c26474e8a9" + "WESTUS:20190716T175308Z:c1e0cf2e-6b65-4a65-a433-933d24e0bd5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,10 +1128,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:35:11 GMT" + "Tue, 16 Jul 2019 17:53:08 GMT" ], "Content-Length": [ - "88" + "89" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,17 +1140,131 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-15T18:35:12.34Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-16T17:53:08.387Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8179?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2E1MzgwMWY1LTdhM2ItNGVjNC05Y2JmLTc5ZmQ0Y2VmZDI5Yz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4d68a64c-2a47-4ad0-8206-f8ca67ff67e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "2f634aed-6818-4e65-8b81-7bcad1c441c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190716T175323Z:2f634aed-6818-4e65-8b81-7bcad1c441c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jul 2019 17:53:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:53:08.573Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xPcGVyYXRpb25SZXN1bHRzL2E1MzgwMWY1LTdhM2ItNGVjNC05Y2JmLTc5ZmQ0Y2VmZDI5Yz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c42bb168-6073-417b-8ec4-ec3c18f5122b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "e4a20ac7-2e5c-4753-bddf-24e67d5be1ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190716T175323Z:e4a20ac7-2e5c-4753-bddf-24e67d5be1ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jul 2019 17:53:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8665?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg2NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72796641-e187-4893-8c18-3462c22ef75e" + "2da73235-d952-410c-a302-6d21e09def4c" ], "Accept-Language": [ "en-US" @@ -1170,7 +1284,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg2NjUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1179,13 +1293,13 @@ "14999" ], "x-ms-request-id": [ - "fb9afb9a-80b1-4a6e-981b-d13aa416522b" + "9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" ], "x-ms-correlation-request-id": [ - "fb9afb9a-80b1-4a6e-981b-d13aa416522b" + "9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" ], "x-ms-routing-request-id": [ - "WESTUS:20190715T183514Z:fb9afb9a-80b1-4a6e-981b-d13aa416522b" + "WESTUS:20190716T175326Z:9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1308,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jul 2019 18:35:13 GMT" + "Tue, 16 Jul 2019 17:53:26 GMT" ], "Expires": [ "-1" @@ -1209,14 +1323,14 @@ ], "Names": { "CreateResourceGroup": [ - "sqlcrudtest-8179" + "sqlcrudtest-8665" ], "CreateServer": [ - "sqlcrudtest-3513" + "sqlcrudtest-2684" ], "FailoverElasticPool": [ - "sqlcrudtest-7218", - "sqlcrudtest-564" + "sqlcrudtest-2156", + "sqlcrudtest-3903" ] }, "Variables": { From 844d80e2f8f7aa4b22c36759cc2bccbc3231d4df Mon Sep 17 00:00:00 2001 From: "REDMOND\\emgu" Date: Wed, 17 Jul 2019 14:54:01 -0700 Subject: [PATCH 3/4] Regenerated using Azure/Master --- .../Generated/SdkInfo_SqlManagementClient.cs | 13 + .../src/Microsoft.Azure.Management.Sql.csproj | 5 +- .../src/Properties/AssemblyInfo.cs | 2 +- .../mgmtmetadata/sql_resource-manager.txt | 14 + .../FailoverDatabase.json | 378 +++++++--------- .../FailoverElasticPool.json | 402 +++++++++--------- 6 files changed, 389 insertions(+), 425 deletions(-) create mode 100644 sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/SdkInfo_SqlManagementClient.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/SdkInfo_SqlManagementClient.cs index c7096f1dc5ad9..87f1e88056924 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/SdkInfo_SqlManagementClient.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Generated/SdkInfo_SqlManagementClient.cs @@ -34,11 +34,13 @@ public static IEnumerable> ApiInfo_SqlManagementCl new Tuple("Sql", "DatabaseVulnerabilityAssessments", "2017-03-01-preview"), new Tuple("Sql", "Databases", "2014-04-01"), new Tuple("Sql", "Databases", "2017-10-01-preview"), + new Tuple("Sql", "Databases", "2018-06-01-preview"), new Tuple("Sql", "ElasticPoolActivities", "2014-04-01"), new Tuple("Sql", "ElasticPoolDatabaseActivities", "2014-04-01"), new Tuple("Sql", "ElasticPoolOperations", "2017-10-01-preview"), new Tuple("Sql", "ElasticPools", "2014-04-01"), new Tuple("Sql", "ElasticPools", "2017-10-01-preview"), + new Tuple("Sql", "ElasticPools", "2018-06-01-preview"), new Tuple("Sql", "EncryptionProtectors", "2015-05-01-preview"), new Tuple("Sql", "ExtendedDatabaseBlobAuditingPolicies", "2017-03-01-preview"), new Tuple("Sql", "ExtendedServerBlobAuditingPolicies", "2017-03-01-preview"), @@ -107,5 +109,16 @@ 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=."; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "6203666516223e8de80552d70c7157806a50f78b"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj index 9a2f606ff9b07..0b2ced40cea76 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Microsoft.Azure.Management.Sql.csproj @@ -7,15 +7,12 @@ Microsoft.Azure.Management.Sql Azure SQL Management SDK library Microsoft.Azure.Management.Sql - 1.32.0-preview + 1.33.0-preview Microsoft Azure SQL Management;SQL;SQL Management; diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs index d82f08b367496..e48f1a75a2e4e 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/Properties/AssemblyInfo.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/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.32.0.0")] +[assembly: AssemblyFileVersion("1.33.0.0")] diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt new file mode 100644 index 0000000000000..ce83d075e00cd --- /dev/null +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/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/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=. +2019-07-16 23:22:54 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: 6203666516223e8de80552d70c7157806a50f78b +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json index e309046a6cd39..111a882dbe55a 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverDatabase.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-4509?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-2990?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI5OTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-4509\": \"2019-07-16 17:49:45Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-2990\": \"2019-07-17 21:42:20Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6ec950-b1a8-4a16-af1f-f9ab9f3ef89c" + "9cdfe1ae-7d2e-4025-997c-ff87f8d64b70" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c76bad72-6ced-47ef-9d85-5cbd649bd647" + "eff0248a-42a8-4ecc-bab1-e73c93b52b69" ], "x-ms-correlation-request-id": [ - "c76bad72-6ced-47ef-9d85-5cbd649bd647" + "eff0248a-42a8-4ecc-bab1-e73c93b52b69" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174948Z:c76bad72-6ced-47ef-9d85-5cbd649bd647" + "WESTUS:20190717T214223Z:eff0248a-42a8-4ecc-bab1-e73c93b52b69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:47 GMT" + "Wed, 17 Jul 2019 21:42:22 GMT" ], "Content-Length": [ "237" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509\",\r\n \"name\": \"sqlcrudtest-4509\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-4509\": \"2019-07-16 17:49:45Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990\",\r\n \"name\": \"sqlcrudtest-2990\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-2990\": \"2019-07-17 21:42:20Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xMzM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7beb4977-9629-46ff-bdb9-39f6f17aed72" + "ea28df1e-cadd-4e30-b2d4-53d73986f1ec" ], "Accept-Language": [ "en-US" @@ -82,7 +82,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview" ], "x-ms-request-id": [ - "89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8" + "a71f7a05-55c1-4d39-bc35-70e8b8f75167" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,10 +117,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "64cabe7d-24ad-4a12-b0d8-69072a734564" + "a51437c8-b686-48fa-b1bc-862a3098757b" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174950Z:64cabe7d-24ad-4a12-b0d8-69072a734564" + "WESTUS:20190717T214225Z:a51437c8-b686-48fa-b1bc-862a3098757b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,7 +129,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:50 GMT" + "Wed, 17 Jul 2019 21:42:25 GMT" ], "Content-Length": [ "74" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -154,7 +154,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -168,7 +168,7 @@ "1" ], "x-ms-request-id": [ - "f8975d55-67ec-4ebb-8c36-c8a211b0db20" + "fb028e2c-b71f-418e-9e54-c83e65153fdc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,10 +177,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "22542304-f700-45c8-9fa3-dafb013669e6" + "677730a1-a5b8-41b1-a33b-9e9d856362e8" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174951Z:22542304-f700-45c8-9fa3-dafb013669e6" + "WESTUS:20190717T214226Z:677730a1-a5b8-41b1-a33b-9e9d856362e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,7 +189,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:51 GMT" + "Wed, 17 Jul 2019 21:42:26 GMT" ], "Content-Length": [ "108" @@ -201,12 +201,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,7 +214,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "1" ], "x-ms-request-id": [ - "626d45a9-6bc7-4330-b36b-9529fda569ba" + "6210488f-d810-43f2-9c25-82786ccde0e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,10 +237,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "a5468129-5704-4543-9b86-b0c31b2cdbf2" + "9bbf654f-8797-49d6-ad59-631f5559a0ce" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174952Z:a5468129-5704-4543-9b86-b0c31b2cdbf2" + "WESTUS:20190717T214227Z:9bbf654f-8797-49d6-ad59-631f5559a0ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:52 GMT" + "Wed, 17 Jul 2019 21:42:27 GMT" ], "Content-Length": [ "108" @@ -261,12 +261,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,7 +274,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -288,7 +288,7 @@ "1" ], "x-ms-request-id": [ - "b3d95ccb-1995-4c96-acac-c826ef01e2c0" + "616752c7-493a-4b78-a8e0-b72be2ff6a81" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,10 +297,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "d5f92847-a1f5-4033-a4fb-bc180b3152c4" + "2aa12d34-be79-43d3-a83c-42b8e0002093" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174953Z:d5f92847-a1f5-4033-a4fb-bc180b3152c4" + "WESTUS:20190717T214229Z:2aa12d34-be79-43d3-a83c-42b8e0002093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:53 GMT" + "Wed, 17 Jul 2019 21:42:28 GMT" ], "Content-Length": [ "108" @@ -321,12 +321,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -334,7 +334,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -345,10 +345,10 @@ "no-cache" ], "Retry-After": [ - "1" + "20" ], "x-ms-request-id": [ - "e924bda1-d879-4b0f-88e1-377e824b0e3b" + "00f9fe98-4879-406f-af3a-41a7538fc3ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "61144391-1ad1-4479-a863-787a916b5017" + "8cceee6f-e2d3-405d-8941-e82861237cf9" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T174954Z:61144391-1ad1-4479-a863-787a916b5017" + "WESTUS:20190717T214230Z:8cceee6f-e2d3-405d-8941-e82861237cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:49:54 GMT" + "Wed, 17 Jul 2019 21:42:30 GMT" ], "Content-Length": [ "108" @@ -381,12 +381,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -394,7 +394,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -408,79 +408,19 @@ "20" ], "x-ms-request-id": [ - "fdb33257-3949-4eb0-9cd2-5a0af6adc0ad" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "06b38026-cbe2-4877-af14-09a40527afbb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ - "8e7a5112-73eb-4236-b7bd-51d70d15d9b2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20190716T174955Z:8e7a5112-73eb-4236-b7bd-51d70d15d9b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 16 Jul 2019 17:49:55 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27414.06", - "OSName/Windows", - "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "20" - ], - "x-ms-request-id": [ - "a36c89c7-bf0c-40ae-b9aa-a7b72406272e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2dcda133-c07e-449d-8e04-fbe12a448665" + "0d1f53b3-38b6-42a0-a0a9-e8700ff558eb" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175015Z:2dcda133-c07e-449d-8e04-fbe12a448665" + "WESTUS:20190717T214250Z:0d1f53b3-38b6-42a0-a0a9-e8700ff558eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +429,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:50:15 GMT" + "Wed, 17 Jul 2019 21:42:50 GMT" ], "Content-Length": [ "108" @@ -501,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi84OWViZWFiNi05YjMzLTQ3ODYtYjVlYS0yYWViOGZkY2Y5YTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/a71f7a05-55c1-4d39-bc35-70e8b8f75167?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9hNzFmN2EwNS01NWMxLTRkMzktYmMzNS03MGU4YjhmNzUxNjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -514,7 +454,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -528,19 +468,19 @@ "15" ], "x-ms-request-id": [ - "7a0cf4a3-ad81-446d-98a4-d7a1a28aa392" + "5d8836d1-a82a-418d-9ef6-1b147a9a7380" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "559e0fab-f54c-4035-b468-aae0a69bae8a" + "6cb718e7-c9ce-4229-84c6-242b15debf13" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175036Z:559e0fab-f54c-4035-b468-aae0a69bae8a" + "WESTUS:20190717T214310Z:6cb718e7-c9ce-4229-84c6-242b15debf13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:50:35 GMT" + "Wed, 17 Jul 2019 21:43:10 GMT" ], "Content-Length": [ "107" @@ -561,12 +501,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"89ebeab6-9b33-4786-b5ea-2aeb8fdcf9a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:49:49.967Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a71f7a05-55c1-4d39-bc35-70e8b8f75167\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:42:24.787Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xMzM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -574,7 +514,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -585,19 +525,19 @@ "no-cache" ], "x-ms-request-id": [ - "c5411d07-fb28-4185-af6f-67ebad2058da" + "9d83cfe7-63e3-4e0d-a9f2-232c0d07bd42" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "62ed89dd-a687-43f8-b2f6-9153e2f7d68b" + "bd9a1d92-a6ca-4cd0-a83e-be9f8ec14af6" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175036Z:62ed89dd-a687-43f8-b2f6-9153e2f7d68b" + "WESTUS:20190717T214310Z:bd9a1d92-a6ca-4cd0-a83e-be9f8ec14af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +546,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:50:35 GMT" + "Wed, 17 Jul 2019 21:43:10 GMT" ], "Content-Length": [ "393" @@ -618,17 +558,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6713.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713\",\r\n \"name\": \"sqlcrudtest-6713\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-1339.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339\",\r\n \"name\": \"sqlcrudtest-1339\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339/databases/sqlcrudtest-8664?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xMzM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NjY0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3853d9ad-d989-469e-a172-b1b3d39bff82" + "04ef201b-23ff-4f15-8beb-d5546fbb1d95" ], "Accept-Language": [ "en-US" @@ -637,7 +577,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,16 +594,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/2268a0d4-84c0-483b-ba54-192795af4cce?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/2268a0d4-84c0-483b-ba54-192795af4cce?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "424fbd30-038d-45b7-a8d7-80d651c36535" + "2268a0d4-84c0-483b-ba54-192795af4cce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -672,10 +612,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "3f1e12ad-cfae-42bf-a57d-240c3e771362" + "76a299e5-8b48-40a9-8938-69dd0a4dee96" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175037Z:3f1e12ad-cfae-42bf-a57d-240c3e771362" + "WESTUS:20190717T214311Z:76a299e5-8b48-40a9-8938-69dd0a4dee96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,7 +624,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:50:36 GMT" + "Wed, 17 Jul 2019 21:43:11 GMT" ], "Content-Length": [ "76" @@ -696,12 +636,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-17T21:43:11.477Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQyNGZiZDMwLTAzOGQtNDViNy1hOGQ3LTgwZDY1MWMzNjUzNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/2268a0d4-84c0-483b-ba54-192795af4cce?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzIyNjhhMGQ0LTg0YzAtNDgzYi1iYTU0LTE5Mjc5NWFmNGNjZT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -709,7 +649,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -723,19 +663,19 @@ "15" ], "x-ms-request-id": [ - "cb16dc70-4aae-4366-b2d1-0daf05d68aab" + "4a1f9d4c-59f9-4077-9654-6ac2048ce25b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "d8efefd8-1d84-4bb2-9434-fed97917a2db" + "74f64a52-77fa-4aaa-8ff9-83660e17c218" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175052Z:d8efefd8-1d84-4bb2-9434-fed97917a2db" + "WESTUS:20190717T214327Z:74f64a52-77fa-4aaa-8ff9-83660e17c218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +684,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:50:51 GMT" + "Wed, 17 Jul 2019 21:43:26 GMT" ], "Content-Length": [ "108" @@ -756,12 +696,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"424fbd30-038d-45b7-a8d7-80d651c36535\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2268a0d4-84c0-483b-ba54-192795af4cce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:43:11.477Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/424fbd30-038d-45b7-a8d7-80d651c36535?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQyNGZiZDMwLTAzOGQtNDViNy1hOGQ3LTgwZDY1MWMzNjUzNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/2268a0d4-84c0-483b-ba54-192795af4cce?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzIyNjhhMGQ0LTg0YzAtNDgzYi1iYTU0LTE5Mjc5NWFmNGNjZT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -769,7 +709,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -783,19 +723,19 @@ "15" ], "x-ms-request-id": [ - "e5fe2768-53a4-4f8d-82b3-e27d68ecbf8a" + "6edd663d-d162-4459-9b04-e0e87ded0aab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "e7ecff58-64b4-4e50-a9c0-ad7902e51e06" + "95d3f063-ebd1-479e-af67-fb9b1ad0f980" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175107Z:e7ecff58-64b4-4e50-a9c0-ad7902e51e06" + "WESTUS:20190717T214342Z:95d3f063-ebd1-479e-af67-fb9b1ad0f980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +744,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:07 GMT" + "Wed, 17 Jul 2019 21:43:41 GMT" ], "Content-Length": [ "107" @@ -816,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"424fbd30-038d-45b7-a8d7-80d651c36535\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:50:36.963Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2268a0d4-84c0-483b-ba54-192795af4cce\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:43:11.477Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339/databases/sqlcrudtest-8664?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xMzM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NjY0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,7 +769,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -840,19 +780,19 @@ "no-cache" ], "x-ms-request-id": [ - "6694c296-e742-4177-8afa-bb32308e9c0b" + "96a72247-3d67-46c8-90b7-c35c7fb2383e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "7e185524-c581-4488-b1bc-782eb3dff651" + "c54b3d39-3b8c-4efb-9d3c-82cf5ffbbe72" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175107Z:7e185524-c581-4488-b1bc-782eb3dff651" + "WESTUS:20190717T214342Z:c54b3d39-3b8c-4efb-9d3c-82cf5ffbbe72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,7 +801,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:07 GMT" + "Wed, 17 Jul 2019 21:43:41 GMT" ], "Content-Length": [ "994" @@ -873,17 +813,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5b0a11d9-1d1f-4911-9773-81fdb32fc6d8\",\r\n \"creationDate\": \"2019-07-16T17:51:02.887Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2019-07-16T18:21:02.887Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759\",\r\n \"name\": \"sqlcrudtest-6759\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"53ab2f8a-6121-49b6-a554-595a5645244f\",\r\n \"creationDate\": \"2019-07-17T21:43:39.257Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2019-07-17T22:13:39.257Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339/databases/sqlcrudtest-8664\",\r\n \"name\": \"sqlcrudtest-8664\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/servers/sqlcrudtest-6713/databases/sqlcrudtest-6759/failover?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NzEzL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NzU5L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/servers/sqlcrudtest-1339/databases/sqlcrudtest-8664/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xMzM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NjY0L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3b8b15-b5d1-48c4-9050-cb13eb6f94ed" + "40cc7610-c93a-4304-a822-96aa04d28de9" ], "Accept-Language": [ "en-US" @@ -892,7 +832,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -903,16 +843,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/bc35db90-30f3-4de1-9472-49130511a90e?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/bc35db90-30f3-4de1-9472-49130511a90e?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "507605c2-dd4f-4f0c-837b-f442f0a2ea53" + "629ae330-1aa0-4f5c-abab-3a4bff9421c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -921,10 +861,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "70745f66-405d-4b0d-9400-f920623e1152" + "d840757f-c7c3-4fdb-af89-bf7c750b284c" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175108Z:70745f66-405d-4b0d-9400-f920623e1152" + "WESTUS:20190717T214342Z:d840757f-c7c3-4fdb-af89-bf7c750b284c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +873,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:08 GMT" + "Wed, 17 Jul 2019 21:43:41 GMT" ], "Content-Length": [ - "88" + "89" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,12 +885,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-16T17:51:08.34Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-17T21:43:42.523Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2ZhYzRmYWY1LTA2NDgtNGVlYy05NTA1LTY4ZWFhYzBlZjUxYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/bc35db90-30f3-4de1-9472-49130511a90e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2JjMzVkYjkwLTMwZjMtNGRlMS05NDcyLTQ5MTMwNTExYTkwZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -958,7 +898,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -972,19 +912,19 @@ "15" ], "x-ms-request-id": [ - "0e6499bd-f9af-4ee2-a40b-e58a0d80dc2b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "43d012cf-d9e2-4b3e-a177-90ab91a206c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], "x-ms-correlation-request-id": [ - "4c938f2b-ed0a-4032-925c-bb4afa9706a5" + "e7e6da35-c542-46e1-bdd9-92f1659ae4b0" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175123Z:4c938f2b-ed0a-4032-925c-bb4afa9706a5" + "WESTUS:20190717T214357Z:e7e6da35-c542-46e1-bdd9-92f1659ae4b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,7 +933,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:23 GMT" + "Wed, 17 Jul 2019 21:43:57 GMT" ], "Content-Length": [ "107" @@ -1005,12 +945,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fac4faf5-0648-4eec-9505-68eaac0ef51c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:51:08.433Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"bc35db90-30f3-4de1-9472-49130511a90e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:43:42.663Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-4509/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/fac4faf5-0648-4eec-9505-68eaac0ef51c?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzL2ZhYzRmYWY1LTA2NDgtNGVlYy05NTA1LTY4ZWFhYzBlZjUxYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-2990/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/bc35db90-30f3-4de1-9472-49130511a90e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzL2JjMzVkYjkwLTMwZjMtNGRlMS05NDcyLTQ5MTMwNTExYTkwZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1018,7 +958,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -1029,19 +969,19 @@ "no-cache" ], "x-ms-request-id": [ - "1ba84e0e-0917-4861-9b3c-3830f8cc8e6e" + "f26da750-5100-4e70-82ed-5d5a732fa117" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "13c9efb8-fc90-453e-bea1-9ed7ffad9464" + "20c3050f-0472-42e1-a356-2c323b4dc432" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175124Z:13c9efb8-fc90-453e-bea1-9ed7ffad9464" + "WESTUS:20190717T214358Z:20c3050f-0472-42e1-a356-2c323b4dc432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +990,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:23 GMT" + "Wed, 17 Jul 2019 21:43:57 GMT" ], "Expires": [ "-1" @@ -1063,13 +1003,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-4509?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ1MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-2990?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI5OTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d2426f3-1e51-46d7-a4bc-b16dc1433261" + "6b88f9bc-580f-43ce-9555-432262f96877" ], "Accept-Language": [ "en-US" @@ -1089,7 +1029,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ1MDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI5OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1098,13 +1038,13 @@ "14999" ], "x-ms-request-id": [ - "23ce7433-81a0-452c-8649-2ae8cab8e612" + "d122793b-5ae0-46da-b612-02c282b1f2d2" ], "x-ms-correlation-request-id": [ - "23ce7433-81a0-452c-8649-2ae8cab8e612" + "d122793b-5ae0-46da-b612-02c282b1f2d2" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175126Z:23ce7433-81a0-452c-8649-2ae8cab8e612" + "WESTUS:20190717T214400Z:d122793b-5ae0-46da-b612-02c282b1f2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,7 +1053,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:25 GMT" + "Wed, 17 Jul 2019 21:44:00 GMT" ], "Expires": [ "-1" @@ -1128,13 +1068,13 @@ ], "Names": { "CreateResourceGroup": [ - "sqlcrudtest-4509" + "sqlcrudtest-2990" ], "CreateServer": [ - "sqlcrudtest-6713" + "sqlcrudtest-1339" ], "FailoverDatabase": [ - "sqlcrudtest-6759" + "sqlcrudtest-8664" ] }, "Variables": { diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json index 0cb9cc392387d..daff770fa7703 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/tests/SessionRecords/Sql.Tests.FailoverTests/FailoverElasticPool.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8665?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg2NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8518?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg1MTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8665\": \"2019-07-16 17:51:30Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8518\": \"2019-07-17 21:44:03Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e75af3c2-66f0-4c67-af59-d98ac1bb4329" + "bccb3f3f-8c47-42cb-9924-d10835bee89e" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2aed41c7-659a-4255-8af3-e05e14998d68" + "c205522f-36eb-4b59-ae26-817f55dadea9" ], "x-ms-correlation-request-id": [ - "2aed41c7-659a-4255-8af3-e05e14998d68" + "c205522f-36eb-4b59-ae26-817f55dadea9" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175133Z:2aed41c7-659a-4255-8af3-e05e14998d68" + "WESTUS:20190717T214406Z:c205522f-36eb-4b59-ae26-817f55dadea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:33 GMT" + "Wed, 17 Jul 2019 21:44:06 GMT" ], "Content-Length": [ "237" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665\",\r\n \"name\": \"sqlcrudtest-8665\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8665\": \"2019-07-16 17:51:30Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518\",\r\n \"name\": \"sqlcrudtest-8518\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"sqlcrudtest-8518\": \"2019-07-17 21:44:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "348e3cd7-1840-45f3-8c01-e2bb0b6c54f6" + "233209b7-da39-4c79-8efd-f610df894cd4" ], "Accept-Language": [ "en-US" @@ -82,7 +82,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,28 +99,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverOperationResults/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview" ], "x-ms-request-id": [ - "481fe32f-204e-4e67-b970-20c8fc9116e3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b53730d9-4c82-4e69-8707-936c6c72742b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "2ec68dec-9036-4b25-9f8b-a766ee11914b" + "1f97814e-8604-4779-a274-a7955232afcb" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175134Z:2ec68dec-9036-4b25-9f8b-a766ee11914b" + "WESTUS:20190717T214408Z:1f97814e-8604-4779-a274-a7955232afcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,7 +129,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:34 GMT" + "Wed, 17 Jul 2019 21:44:07 GMT" ], "Content-Length": [ "74" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -154,7 +154,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -168,7 +168,7 @@ "1" ], "x-ms-request-id": [ - "594cb942-2561-4771-9946-41e927dc6c0c" + "37aa5198-ef37-4a74-a9dc-9400abca086b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,10 +177,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "c5411f02-ac87-4ee6-9b7c-62421575848d" + "5f6dd025-bffd-457b-a41f-079aa4dcd803" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175136Z:c5411f02-ac87-4ee6-9b7c-62421575848d" + "WESTUS:20190717T214409Z:5f6dd025-bffd-457b-a41f-079aa4dcd803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,7 +189,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:35 GMT" + "Wed, 17 Jul 2019 21:44:09 GMT" ], "Content-Length": [ "108" @@ -201,12 +201,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,7 +214,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "1" ], "x-ms-request-id": [ - "09828c91-770d-4c31-9ff6-09c9cb932eb3" + "e53f7287-e42a-4868-9c54-41efc28d0065" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,10 +237,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "cd3893e4-053c-4bd6-989a-ccca70d457fe" + "2cb0388a-b340-480d-a322-cc630c7cc362" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175137Z:cd3893e4-053c-4bd6-989a-ccca70d457fe" + "WESTUS:20190717T214410Z:2cb0388a-b340-480d-a322-cc630c7cc362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:36 GMT" + "Wed, 17 Jul 2019 21:44:10 GMT" ], "Content-Length": [ "108" @@ -261,12 +261,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,7 +274,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -288,7 +288,7 @@ "1" ], "x-ms-request-id": [ - "56c8599e-f8d7-4ef4-ae8c-0d23cb73ca41" + "f9208712-c5ed-4923-99a6-b54cf9c1bd80" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,10 +297,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "a17a5256-8d87-4121-9eb6-23e0d9a85316" + "ec395765-c288-43ca-b735-5a3a30a92578" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175138Z:a17a5256-8d87-4121-9eb6-23e0d9a85316" + "WESTUS:20190717T214411Z:ec395765-c288-43ca-b735-5a3a30a92578" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:38 GMT" + "Wed, 17 Jul 2019 21:44:11 GMT" ], "Content-Length": [ "108" @@ -321,12 +321,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -334,7 +334,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -348,7 +348,7 @@ "1" ], "x-ms-request-id": [ - "65683a7b-5ca7-4c28-9e51-ae936865af85" + "1b7c2361-4027-4ae2-ab05-ec9e11e991d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "5b9694f3-c1a5-4371-9af2-7b26eeed0eba" + "637bbc83-3d85-4734-b10b-ccb922908c1c" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175139Z:5b9694f3-c1a5-4371-9af2-7b26eeed0eba" + "WESTUS:20190717T214413Z:637bbc83-3d85-4734-b10b-ccb922908c1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:39 GMT" + "Wed, 17 Jul 2019 21:44:12 GMT" ], "Content-Length": [ "108" @@ -381,12 +381,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -394,7 +394,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -408,7 +408,7 @@ "20" ], "x-ms-request-id": [ - "5c2457f5-b581-4268-a4f9-e403ad46ee59" + "dd8038be-9d6d-497f-8ab7-a62294f73d37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -417,10 +417,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "b2f1a286-a999-4262-9ac6-85684d1d98b8" + "6020d4a3-4480-48a3-a167-57b27c6a0662" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175140Z:b2f1a286-a999-4262-9ac6-85684d1d98b8" + "WESTUS:20190717T214414Z:6020d4a3-4480-48a3-a167-57b27c6a0662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:51:40 GMT" + "Wed, 17 Jul 2019 21:44:13 GMT" ], "Content-Length": [ "108" @@ -441,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -454,7 +454,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -468,7 +468,7 @@ "20" ], "x-ms-request-id": [ - "de40be47-0c5b-4d98-beb5-5d1df65dbc5c" + "c215cb5d-5966-4f5f-b9e3-4cf0d59c260f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "4876439a-491b-48b0-9f7d-7880d271f530" + "5ea66b1c-dc4e-4c3f-9926-1c7776e9bf2e" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175200Z:4876439a-491b-48b0-9f7d-7880d271f530" + "WESTUS:20190717T214434Z:5ea66b1c-dc4e-4c3f-9926-1c7776e9bf2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:00 GMT" + "Wed, 17 Jul 2019 21:44:33 GMT" ], "Content-Length": [ "108" @@ -501,12 +501,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/481fe32f-204e-4e67-b970-20c8fc9116e3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi80ODFmZTMyZi0yMDRlLTRlNjctYjk3MC0yMGM4ZmM5MTE2ZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/serverAzureAsyncOperation/b53730d9-4c82-4e69-8707-936c6c72742b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi9iNTM3MzBkOS00YzgyLTRlNjktODcwNy05MzZjNmM3Mjc0MmI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -514,7 +514,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -528,7 +528,7 @@ "15" ], "x-ms-request-id": [ - "ed44181b-fb15-4a6d-b642-e6354ae0e8e6" + "179cf933-a6ce-40fe-8784-796c170fabcc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -537,10 +537,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "8e462f55-83c0-46e8-8b36-4218fd76d15e" + "b0c49a0a-6cc4-453a-9e3c-742d19236b4a" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175220Z:8e462f55-83c0-46e8-8b36-4218fd76d15e" + "WESTUS:20190717T214454Z:b0c49a0a-6cc4-453a-9e3c-742d19236b4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,7 +549,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:20 GMT" + "Wed, 17 Jul 2019 21:44:54 GMT" ], "Content-Length": [ "107" @@ -561,12 +561,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"481fe32f-204e-4e67-b970-20c8fc9116e3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:51:34.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b53730d9-4c82-4e69-8707-936c6c72742b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:44:08.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -574,7 +574,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -585,7 +585,7 @@ "no-cache" ], "x-ms-request-id": [ - "4a4e433d-d5e5-480d-b20d-265336988b23" + "62cda551-d8c4-411a-b2f9-2f2a55d9a5ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -594,10 +594,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "978aca1b-8397-4137-acdd-645d576d0feb" + "27e31957-f651-43d5-abf7-112e56a6ca36" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175220Z:978aca1b-8397-4137-acdd-645d576d0feb" + "WESTUS:20190717T214454Z:27e31957-f651-43d5-abf7-112e56a6ca36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:20 GMT" + "Wed, 17 Jul 2019 21:44:54 GMT" ], "Content-Length": [ "393" @@ -618,17 +618,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2684.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684\",\r\n \"name\": \"sqlcrudtest-2684\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6437.database.windows.net\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437\",\r\n \"name\": \"sqlcrudtest-6437\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02NzM5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4e2600c3-88bb-40f6-a522-c7b27b472338" + "554adef5-359f-4e78-ab25-290ee3587107" ], "Accept-Language": [ "en-US" @@ -637,7 +637,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,16 +654,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/185db3d8-c714-4fcd-abe2-96e61d974fcf?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/185db3d8-c714-4fcd-abe2-96e61d974fcf?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3" + "185db3d8-c714-4fcd-abe2-96e61d974fcf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -672,10 +672,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "bba26a4f-ed30-459a-b5f2-002e8de8d842" + "1a499ece-5eca-4999-984d-b997ca2ceb52" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175221Z:bba26a4f-ed30-459a-b5f2-002e8de8d842" + "WESTUS:20190717T214455Z:1a499ece-5eca-4999-984d-b997ca2ceb52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,7 +684,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:20 GMT" + "Wed, 17 Jul 2019 21:44:55 GMT" ], "Content-Length": [ "79" @@ -696,12 +696,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalElasticPool\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalElasticPool\",\r\n \"startTime\": \"2019-07-17T21:44:55.283Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2I2ZDM4ZTU4LTE2OTgtNGViZi1iN2JkLTRlYjllM2RjOWZlMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/185db3d8-c714-4fcd-abe2-96e61d974fcf?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzE4NWRiM2Q4LWM3MTQtNGZjZC1hYmUyLTk2ZTYxZDk3NGZjZj9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -709,7 +709,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -723,19 +723,19 @@ "15" ], "x-ms-request-id": [ - "d9e4d2a1-08fb-4185-b565-5325a4b46558" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "783f216f-c5ce-4a83-98b5-c6995faab3eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "6ead92c5-9cfe-4017-adfd-45ad8c894937" + "ef00752e-cf9a-4edc-92c0-be827d96295f" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175236Z:6ead92c5-9cfe-4017-adfd-45ad8c894937" + "WESTUS:20190717T214510Z:ef00752e-cf9a-4edc-92c0-be827d96295f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +744,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:36 GMT" + "Wed, 17 Jul 2019 21:45:10 GMT" ], "Content-Length": [ "108" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185db3d8-c714-4fcd-abe2-96e61d974fcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-07-17T21:44:55.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2I2ZDM4ZTU4LTE2OTgtNGViZi1iN2JkLTRlYjllM2RjOWZlMz9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/185db3d8-c714-4fcd-abe2-96e61d974fcf?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzE4NWRiM2Q4LWM3MTQtNGZjZC1hYmUyLTk2ZTYxZDk3NGZjZj9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -769,7 +769,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -783,19 +783,19 @@ "15" ], "x-ms-request-id": [ - "685e0856-b9e8-402c-be0e-255973ce7466" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "76d65f1f-758e-422b-b798-39e933d9ec77" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], "x-ms-correlation-request-id": [ - "4dbaf8a3-c1fb-4ff0-9baf-80435fb389b7" + "3ffa23da-77b2-436a-83d3-d1c131028ca2" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175251Z:4dbaf8a3-c1fb-4ff0-9baf-80435fb389b7" + "WESTUS:20190717T214525Z:3ffa23da-77b2-436a-83d3-d1c131028ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +804,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:51 GMT" + "Wed, 17 Jul 2019 21:45:25 GMT" ], "Content-Length": [ "107" @@ -816,12 +816,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b6d38e58-1698-4ebf-b7bd-4eb9e3dc9fe3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:52:21.353Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185db3d8-c714-4fcd-abe2-96e61d974fcf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:44:55.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02NzM5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,7 +829,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -840,7 +840,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a7ac1fd-f513-4f18-afc7-82a7de19e629" + "fee868c3-560a-406b-a45d-8f6c7110e24f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -849,10 +849,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "ea582024-575b-4efb-971b-77912a624ee7" + "f974e266-9894-43d6-b2a0-fa5522b42f63" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175252Z:ea582024-575b-4efb-971b-77912a624ee7" + "WESTUS:20190717T214525Z:f974e266-9894-43d6-b2a0-fa5522b42f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,10 +861,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:51 GMT" + "Wed, 17 Jul 2019 21:45:25 GMT" ], "Content-Length": [ - "580" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,17 +873,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"vcore,pool\",\r\n \"properties\": {\r\n \"state\": \"Ready\",\r\n \"creationDate\": \"2019-07-16T17:52:21.493Z\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"perDatabaseSettings\": {\r\n \"minCapacity\": 0.0,\r\n \"maxCapacity\": 2.0\r\n },\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\",\r\n \"name\": \"sqlcrudtest-2156\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"vcore,pool\",\r\n \"properties\": {\r\n \"state\": \"Ready\",\r\n \"creationDate\": \"2019-07-17T21:44:55.44Z\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"perDatabaseSettings\": {\r\n \"minCapacity\": 0.0,\r\n \"maxCapacity\": 2.0\r\n },\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739\",\r\n \"name\": \"sqlcrudtest-6739\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTAzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/databases/sqlcrudtest-5399?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01Mzk5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3800416f-1e14-49d6-94f4-e2e3b37a1d6f" + "8d424dfe-0889-49d2-a3b5-3574bad8ab8d" ], "Accept-Language": [ "en-US" @@ -892,7 +892,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -909,16 +909,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/databaseOperationResults/1ff217d8-123e-41e3-8701-96e1fbf33d72?api-version=2017-10-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/1ff217d8-123e-41e3-8701-96e1fbf33d72?api-version=2017-10-01-preview" ], "x-ms-request-id": [ - "94406969-0d52-412e-9832-7960c3b9bda1" + "1ff217d8-123e-41e3-8701-96e1fbf33d72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -927,10 +927,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "5aca24f0-36a8-4687-a216-33878f10fc61" + "08a3f638-d87c-41f1-9ac1-e7ee3fe94439" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175252Z:5aca24f0-36a8-4687-a216-33878f10fc61" + "WESTUS:20190717T214526Z:08a3f638-d87c-41f1-9ac1-e7ee3fe94439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,10 +939,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:52:52 GMT" + "Wed, 17 Jul 2019 21:45:26 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -951,12 +951,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-16T17:52:52.62Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2019-07-17T21:45:26.523Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/94406969-0d52-412e-9832-7960c3b9bda1?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzk0NDA2OTY5LTBkNTItNDEyZS05ODMyLTc5NjBjM2I5YmRhMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/databaseAzureAsyncOperation/1ff217d8-123e-41e3-8701-96e1fbf33d72?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzFmZjIxN2Q4LTEyM2UtNDFlMy04NzAxLTk2ZTFmYmYzM2Q3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -964,7 +964,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -978,19 +978,19 @@ "15" ], "x-ms-request-id": [ - "f56a0068-e4e8-4a52-a258-2c30d140e873" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "81a2c90c-e43b-445f-9540-b60c16b1fa9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "ec426bb2-03d8-4800-8ee1-95cb3b0bdebb" + "fd3dd044-4c90-4673-abab-259a9a08f9df" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175308Z:ec426bb2-03d8-4800-8ee1-95cb3b0bdebb" + "WESTUS:20190717T214543Z:fd3dd044-4c90-4673-abab-259a9a08f9df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,10 +999,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:08 GMT" + "Wed, 17 Jul 2019 21:45:42 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1011,12 +1011,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"94406969-0d52-412e-9832-7960c3b9bda1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:52:52.62Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1ff217d8-123e-41e3-8701-96e1fbf33d72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:45:26.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zOTAzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/databases/sqlcrudtest-5399?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01Mzk5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1024,7 +1024,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -1035,7 +1035,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ba9eaf2-aca6-4898-985a-3f5cdacf7201" + "774797c8-7d5c-4bc3-be7c-d6e8dd9a8a11" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1044,10 +1044,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "bb3c4d07-5a76-4b1a-83f8-b7a750e2fedf" + "6ab5b23f-81f7-4b38-a4b2-51eac74a17f2" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175308Z:bb3c4d07-5a76-4b1a-83f8-b7a750e2fedf" + "WESTUS:20190717T214543Z:6ab5b23f-81f7-4b38-a4b2-51eac74a17f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,10 +1056,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:08 GMT" + "Wed, 17 Jul 2019 21:45:42 GMT" ], "Content-Length": [ - "1116" + "1118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1068,17 +1068,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,user,vcore,pool\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156\",\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cd7f57d6-f24e-41a8-b0a5-637c16d69f3a\",\r\n \"creationDate\": \"2019-07-16T17:52:59.98Z\",\r\n \"currentServiceObjectiveName\": \"ElasticPool\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2019-07-16T18:22:59.98Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/databases/sqlcrudtest-3903\",\r\n \"name\": \"sqlcrudtest-3903\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,user,vcore,pool\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"elasticPoolId\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739\",\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7b35db34-a313-4408-a538-4a3eaaa622bc\",\r\n \"creationDate\": \"2019-07-17T21:45:34.477Z\",\r\n \"currentServiceObjectiveName\": \"ElasticPool\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"centralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2019-07-17T22:15:34.477Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"ElasticPool\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/databases/sqlcrudtest-5399\",\r\n \"name\": \"sqlcrudtest-5399\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/servers/sqlcrudtest-2684/elasticPools/sqlcrudtest-2156/failover?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg0L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yMTU2L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/servers/sqlcrudtest-6437/elasticPools/sqlcrudtest-6739/failover?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDM3L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02NzM5L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0940fe5-4715-49cd-9e2a-6c03d2eb026e" + "613c2fc7-881b-4064-a868-a4e68b67054b" ], "Accept-Language": [ "en-US" @@ -1087,7 +1087,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -1098,16 +1098,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/7276ac6a-c60f-450f-becf-3640addb14c5?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/7276ac6a-c60f-450f-becf-3640addb14c5?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "60fb34b7-8f68-47c8-8514-33acb5107869" + "915d6b25-c7e2-4a28-b6f4-ff246d915e86" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1116,10 +1116,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "c1e0cf2e-6b65-4a65-a433-933d24e0bd5c" + "d35c718c-8d64-4afd-a116-6b47cfc57700" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175308Z:c1e0cf2e-6b65-4a65-a433-933d24e0bd5c" + "WESTUS:20190717T214543Z:d35c718c-8d64-4afd-a116-6b47cfc57700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,7 +1128,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:08 GMT" + "Wed, 17 Jul 2019 21:45:43 GMT" ], "Content-Length": [ "89" @@ -1140,12 +1140,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-16T17:53:08.387Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverDatabaseOrElasticPoolAsync\",\r\n \"startTime\": \"2019-07-17T21:45:43.803Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uL2E1MzgwMWY1LTdhM2ItNGVjNC05Y2JmLTc5ZmQ0Y2VmZDI5Yz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolAzureAsyncOperation/7276ac6a-c60f-450f-becf-3640addb14c5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xBenVyZUFzeW5jT3BlcmF0aW9uLzcyNzZhYzZhLWM2MGYtNDUwZi1iZWNmLTM2NDBhZGRiMTRjNT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1153,7 +1153,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -1167,7 +1167,7 @@ "15" ], "x-ms-request-id": [ - "4d68a64c-2a47-4ad0-8206-f8ca67ff67e7" + "7a7ea63d-8729-4044-a816-89846b944602" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1176,10 +1176,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "2f634aed-6818-4e65-8b81-7bcad1c441c1" + "520b933f-2db9-424b-816e-782b5d41c61c" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175323Z:2f634aed-6818-4e65-8b81-7bcad1c441c1" + "WESTUS:20190717T214559Z:520b933f-2db9-424b-816e-782b5d41c61c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1188,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:23 GMT" + "Wed, 17 Jul 2019 21:45:58 GMT" ], "Content-Length": [ "107" @@ -1200,12 +1200,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-16T17:53:08.573Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7276ac6a-c60f-450f-becf-3640addb14c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-07-17T21:45:43.897Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8665/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/a53801f5-7a3b-4ec4-9cbf-79fd4cefd29c?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xPcGVyYXRpb25SZXN1bHRzL2E1MzgwMWY1LTdhM2ItNGVjNC05Y2JmLTc5ZmQ0Y2VmZDI5Yz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/sqlcrudtest-8518/providers/Microsoft.Sql/locations/eastus2/elasticPoolOperationResults/7276ac6a-c60f-450f-becf-3640addb14c5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czIvZWxhc3RpY1Bvb2xPcGVyYXRpb25SZXN1bHRzLzcyNzZhYzZhLWM2MGYtNDUwZi1iZWNmLTM2NDBhZGRiMTRjNT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1213,7 +1213,7 @@ "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.6.3.9600.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.31.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.33.0.0" ] }, "ResponseHeaders": { @@ -1224,7 +1224,7 @@ "no-cache" ], "x-ms-request-id": [ - "c42bb168-6073-417b-8ec4-ec3c18f5122b" + "e6e60890-c73e-4ec4-8daf-ead61b3ae263" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1233,10 +1233,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "e4a20ac7-2e5c-4753-bddf-24e67d5be1ff" + "56ea7266-f821-4d06-bd00-a6757aaa208f" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175323Z:e4a20ac7-2e5c-4753-bddf-24e67d5be1ff" + "WESTUS:20190717T214559Z:56ea7266-f821-4d06-bd00-a6757aaa208f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,7 +1245,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:23 GMT" + "Wed, 17 Jul 2019 21:45:58 GMT" ], "Expires": [ "-1" @@ -1258,13 +1258,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8665?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg2NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/sqlcrudtest-8518?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg1MTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2da73235-d952-410c-a302-6d21e09def4c" + "52858e2d-9119-4f95-a0fc-5d746fe41681" ], "Accept-Language": [ "en-US" @@ -1284,7 +1284,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg2NjUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg1MTgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1293,13 +1293,13 @@ "14999" ], "x-ms-request-id": [ - "9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" + "19625105-f5d8-4670-a2c8-f560a0b0302e" ], "x-ms-correlation-request-id": [ - "9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" + "19625105-f5d8-4670-a2c8-f560a0b0302e" ], "x-ms-routing-request-id": [ - "WESTUS:20190716T175326Z:9b0835fb-bb0b-4dbd-a815-771fb4b77fd2" + "WESTUS:20190717T214601Z:19625105-f5d8-4670-a2c8-f560a0b0302e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,7 +1308,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jul 2019 17:53:26 GMT" + "Wed, 17 Jul 2019 21:46:00 GMT" ], "Expires": [ "-1" @@ -1323,14 +1323,14 @@ ], "Names": { "CreateResourceGroup": [ - "sqlcrudtest-8665" + "sqlcrudtest-8518" ], "CreateServer": [ - "sqlcrudtest-2684" + "sqlcrudtest-6437" ], "FailoverElasticPool": [ - "sqlcrudtest-2156", - "sqlcrudtest-3903" + "sqlcrudtest-6739", + "sqlcrudtest-5399" ] }, "Variables": { From 877edd7128b2bdd97909be17e7470cea3b0c0be7 Mon Sep 17 00:00:00 2001 From: "REDMOND\\emgu" Date: Wed, 17 Jul 2019 15:03:27 -0700 Subject: [PATCH 4/4] Copied sql_resource-manager.txt to the right place --- eng/mgmt/mgmtmetadata/sql_resource-manager.txt | 10 +++++----- .../eng/mgmt/mgmtmetadata/sql_resource-manager.txt | 14 -------------- 2 files changed, 5 insertions(+), 19 deletions(-) delete mode 100644 sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt diff --git a/eng/mgmt/mgmtmetadata/sql_resource-manager.txt b/eng/mgmt/mgmtmetadata/sql_resource-manager.txt index 6f1370801ad1b..ce83d075e00cd 100644 --- a/eng/mgmt/mgmtmetadata/sql_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/sql_resource-manager.txt @@ -3,12 +3,12 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/emgu-ms/azure-rest-api-specs/blob/failoverSwaggerChanges/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\GitCode\azure-sdk-for-net\sdk -2019-07-12 23:19:41 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=. +2019-07-16 23:22:54 UTC Azure-rest-api-specs repository information -GitHub fork: emgu-ms -Branch: failoverSwaggerChanges -Commit: 23564ccc16eb8eb3cc8acf94bb43bfcc01c44f30 +GitHub fork: Azure +Branch: master +Commit: 6203666516223e8de80552d70c7157806a50f78b AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt b/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt deleted file mode 100644 index ce83d075e00cd..0000000000000 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.SqlManagement/src/eng/mgmt/mgmtmetadata/sql_resource-manager.txt +++ /dev/null @@ -1,14 +0,0 @@ -Installing AutoRest version: latest -AutoRest installed successfully. -Commencing code generation -Generating CSharp code -Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=. -2019-07-16 23:22:54 UTC -Azure-rest-api-specs repository information -GitHub fork: Azure -Branch: master -Commit: 6203666516223e8de80552d70c7157806a50f78b -AutoRest information -Requested version: latest -Bootstrapper version: autorest@2.0.4283