From 6e0f4d17ef13ffea261fd5b9023e659d3e8663ae Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Mon, 23 Jan 2023 10:31:07 +0100 Subject: [PATCH 1/9] Added SDK updates and DTC cmdlets --- .../IManagedInstanceDtcsOperations.cs | 163 ++++ .../Sql.Sdk/Generated/ISqlManagementClient.cs | 5 + .../ManagedInstanceDtcsOperations.cs | 858 ++++++++++++++++++ ...ManagedInstanceDtcsOperationsExtensions.cs | 239 +++++ .../Generated/Models/ManagedInstanceDtc.cs | 100 ++ .../ManagedInstanceDtcSecuritySettings.cs | 91 ++ ...TransactionManagerCommunicationSettings.cs | 72 ++ .../Generated/SdkInfo_SqlManagementClient.cs | 1 + .../Sql.Sdk/Generated/SqlManagementClient.cs | 6 + src/Sql/Sql.Sdk/README.md | 1 + src/Sql/Sql/Az.Sql.psd1 | 4 +- .../Cmdlet/GetAzureSqlManagedInstanceDtc.cs | 109 +++ .../Cmdlet/ManagedInstanceDtcCmdletBase.cs | 33 + .../Cmdlet/SetAzureSqlManagedInstanceDtc.cs | 210 +++++ .../Model/AzureSqlManagedInstanceDtcModel.cs | 65 ++ .../AzureSqlManagedInstanceDtcAdapter.cs | 79 ++ .../AzureSqlManagedInstanceDtcCommunicator.cs | 85 ++ src/Sql/Sql/Properties/Resources.Designer.cs | 20 +- src/Sql/Sql/Properties/Resources.resx | 6 + 19 files changed, 2145 insertions(+), 2 deletions(-) create mode 100644 src/Sql/Sql.Sdk/Generated/IManagedInstanceDtcsOperations.cs create mode 100644 src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperations.cs create mode 100644 src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperationsExtensions.cs create mode 100644 src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtc.cs create mode 100644 src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcSecuritySettings.cs create mode 100644 src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcTransactionManagerCommunicationSettings.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Cmdlet/GetAzureSqlManagedInstanceDtc.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Cmdlet/ManagedInstanceDtcCmdletBase.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs create mode 100644 src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcCommunicator.cs diff --git a/src/Sql/Sql.Sdk/Generated/IManagedInstanceDtcsOperations.cs b/src/Sql/Sql.Sdk/Generated/IManagedInstanceDtcsOperations.cs new file mode 100644 index 000000000000..723bdb96d453 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/IManagedInstanceDtcsOperations.cs @@ -0,0 +1,163 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ManagedInstanceDtcsOperations operations. + /// + public partial interface IManagedInstanceDtcsOperations + { + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByManagedInstanceWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByManagedInstanceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/Sql/Sql.Sdk/Generated/ISqlManagementClient.cs b/src/Sql/Sql.Sdk/Generated/ISqlManagementClient.cs index 5ebd6150b5b4..4d3a95b0d11a 100644 --- a/src/Sql/Sql.Sdk/Generated/ISqlManagementClient.cs +++ b/src/Sql/Sql.Sdk/Generated/ISqlManagementClient.cs @@ -483,5 +483,10 @@ public partial interface ISqlManagementClient : System.IDisposable /// IManagedServerDnsAliasesOperations ManagedServerDnsAliases { get; } + /// + /// Gets the IManagedInstanceDtcsOperations. + /// + IManagedInstanceDtcsOperations ManagedInstanceDtcs { get; } + } } diff --git a/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperations.cs b/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperations.cs new file mode 100644 index 000000000000..854d2051e0b4 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperations.cs @@ -0,0 +1,858 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ManagedInstanceDtcsOperations operations. + /// + internal partial class ManagedInstanceDtcsOperations : IServiceOperations, IManagedInstanceDtcsOperations + { + /// + /// Initializes a new instance of the ManagedInstanceDtcsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ManagedInstanceDtcsOperations(SqlManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SqlManagementClient + /// + public SqlManagementClient Client { get; private set; } + + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByManagedInstanceWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2022-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("managedInstanceName", managedInstanceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByManagedInstance", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dtc").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string dtcName = "current"; + string apiVersion = "2022-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("managedInstanceName", managedInstanceName); + tracingParameters.Add("dtcName", dtcName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dtc/{dtcName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{dtcName}", System.Uri.EscapeDataString(dtcName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (managedInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "managedInstanceName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string dtcName = "current"; + string apiVersion = "2022-05-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("managedInstanceName", managedInstanceName); + tracingParameters.Add("dtcName", dtcName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dtc/{dtcName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{managedInstanceName}", System.Uri.EscapeDataString(managedInstanceName)); + _url = _url.Replace("{dtcName}", System.Uri.EscapeDataString(dtcName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByManagedInstanceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByManagedInstanceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperationsExtensions.cs b/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperationsExtensions.cs new file mode 100644 index 000000000000..85028dc0ee31 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/ManagedInstanceDtcsOperationsExtensions.cs @@ -0,0 +1,239 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ManagedInstanceDtcsOperations. + /// + public static partial class ManagedInstanceDtcsOperationsExtensions + { + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + public static IPage ListByManagedInstance(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName) + { + return operations.ListByManagedInstanceAsync(resourceGroupName, managedInstanceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByManagedInstanceAsync(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByManagedInstanceWithHttpMessagesAsync(resourceGroupName, managedInstanceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + public static ManagedInstanceDtc Get(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName) + { + return operations.GetAsync(resourceGroupName, managedInstanceName).GetAwaiter().GetResult(); + } + + /// + /// Gets managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, managedInstanceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + public static ManagedInstanceDtc CreateOrUpdate(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, managedInstanceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + public static ManagedInstanceDtc BeginCreateOrUpdate(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, managedInstanceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the managed instance. + /// + /// + /// Managed instance DTC settings. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IManagedInstanceDtcsOperations operations, string resourceGroupName, string managedInstanceName, ManagedInstanceDtc parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, managedInstanceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByManagedInstanceNext(this IManagedInstanceDtcsOperations operations, string nextPageLink) + { + return operations.ListByManagedInstanceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of managed instance DTC settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByManagedInstanceNextAsync(this IManagedInstanceDtcsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByManagedInstanceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtc.cs b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtc.cs new file mode 100644 index 000000000000..d7740f928dd2 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtc.cs @@ -0,0 +1,100 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// SQL Managed Instance DTC + /// + [Rest.Serialization.JsonTransformation] + public partial class ManagedInstanceDtc : ProxyResource + { + /// + /// Initializes a new instance of the ManagedInstanceDtc class. + /// + public ManagedInstanceDtc() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ManagedInstanceDtc class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Active status of managed instance + /// DTC. + /// Security settings of managed + /// instance DTC. + /// External dns suffix + /// search list of managed instance DTC. + /// Host name dns suffix of managed + /// instance DTC. + /// Provisioning state of managed + /// instance DTC. Possible values include: 'Created', 'InProgress', + /// 'Succeeded', 'Failed', 'Canceled' + public ManagedInstanceDtc(string id = default(string), string name = default(string), string type = default(string), bool? dtcEnabled = default(bool?), ManagedInstanceDtcSecuritySettings securitySettings = default(ManagedInstanceDtcSecuritySettings), IList externalDnsSuffixSearchList = default(IList), string dtcHostNameDnsSuffix = default(string), string provisioningState = default(string)) + : base(id, name, type) + { + DtcEnabled = dtcEnabled; + SecuritySettings = securitySettings; + ExternalDnsSuffixSearchList = externalDnsSuffixSearchList; + DtcHostNameDnsSuffix = dtcHostNameDnsSuffix; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets active status of managed instance DTC. + /// + [JsonProperty(PropertyName = "properties.dtcEnabled")] + public bool? DtcEnabled { get; set; } + + /// + /// Gets or sets security settings of managed instance DTC. + /// + [JsonProperty(PropertyName = "properties.securitySettings")] + public ManagedInstanceDtcSecuritySettings SecuritySettings { get; set; } + + /// + /// Gets or sets external dns suffix search list of managed instance + /// DTC. + /// + [JsonProperty(PropertyName = "properties.externalDnsSuffixSearchList")] + public IList ExternalDnsSuffixSearchList { get; set; } + + /// + /// Gets host name dns suffix of managed instance DTC. + /// + [JsonProperty(PropertyName = "properties.dtcHostNameDnsSuffix")] + public string DtcHostNameDnsSuffix { get; private set; } + + /// + /// Gets provisioning state of managed instance DTC. Possible values + /// include: 'Created', 'InProgress', 'Succeeded', 'Failed', 'Canceled' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + } +} diff --git a/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcSecuritySettings.cs b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcSecuritySettings.cs new file mode 100644 index 000000000000..dfd84274e189 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcSecuritySettings.cs @@ -0,0 +1,91 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Security Settings of managed instance DTC. + /// + public partial class ManagedInstanceDtcSecuritySettings + { + /// + /// Initializes a new instance of the + /// ManagedInstanceDtcSecuritySettings class. + /// + public ManagedInstanceDtcSecuritySettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ManagedInstanceDtcSecuritySettings class. + /// + /// Transaction + /// Manager communication settings of managed instance DTC. + /// Allow XA Transactions to + /// managed instance DTC. + /// Allow SNA LU 6.2 + /// Transactions to managed instance DTC. + /// Default timeout for XA + /// Transactions (in seconds). + /// Maximum timeout for XA + /// Transactions (in seconds). + public ManagedInstanceDtcSecuritySettings(ManagedInstanceDtcTransactionManagerCommunicationSettings transactionManagerCommunicationSettings = default(ManagedInstanceDtcTransactionManagerCommunicationSettings), bool? xaTransactionsEnabled = default(bool?), bool? snaLu6point2TransactionsEnabled = default(bool?), int? xaTransactionsDefaultTimeout = default(int?), int? xaTransactionsMaximumTimeout = default(int?)) + { + TransactionManagerCommunicationSettings = transactionManagerCommunicationSettings; + XaTransactionsEnabled = xaTransactionsEnabled; + SnaLu6point2TransactionsEnabled = snaLu6point2TransactionsEnabled; + XaTransactionsDefaultTimeout = xaTransactionsDefaultTimeout; + XaTransactionsMaximumTimeout = xaTransactionsMaximumTimeout; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets transaction Manager communication settings of managed + /// instance DTC. + /// + [JsonProperty(PropertyName = "transactionManagerCommunicationSettings")] + public ManagedInstanceDtcTransactionManagerCommunicationSettings TransactionManagerCommunicationSettings { get; set; } + + /// + /// Gets or sets allow XA Transactions to managed instance DTC. + /// + [JsonProperty(PropertyName = "xaTransactionsEnabled")] + public bool? XaTransactionsEnabled { get; set; } + + /// + /// Gets or sets allow SNA LU 6.2 Transactions to managed instance DTC. + /// + [JsonProperty(PropertyName = "snaLu6point2TransactionsEnabled")] + public bool? SnaLu6point2TransactionsEnabled { get; set; } + + /// + /// Gets or sets default timeout for XA Transactions (in seconds). + /// + [JsonProperty(PropertyName = "xaTransactionsDefaultTimeout")] + public int? XaTransactionsDefaultTimeout { get; set; } + + /// + /// Gets or sets maximum timeout for XA Transactions (in seconds). + /// + [JsonProperty(PropertyName = "xaTransactionsMaximumTimeout")] + public int? XaTransactionsMaximumTimeout { get; set; } + + } +} diff --git a/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcTransactionManagerCommunicationSettings.cs b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcTransactionManagerCommunicationSettings.cs new file mode 100644 index 000000000000..beb5560703f6 --- /dev/null +++ b/src/Sql/Sql.Sdk/Generated/Models/ManagedInstanceDtcTransactionManagerCommunicationSettings.cs @@ -0,0 +1,72 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Transaction Manager Communication Settings of managed instance DTC. + /// + public partial class ManagedInstanceDtcTransactionManagerCommunicationSettings + { + /// + /// Initializes a new instance of the + /// ManagedInstanceDtcTransactionManagerCommunicationSettings class. + /// + public ManagedInstanceDtcTransactionManagerCommunicationSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ManagedInstanceDtcTransactionManagerCommunicationSettings class. + /// + /// Allow Inbound traffic to managed + /// instance DTC. + /// Allow Outbound traffic of + /// managed instance DTC. + /// Authentication type of managed + /// instance DTC. + public ManagedInstanceDtcTransactionManagerCommunicationSettings(bool? allowInboundEnabled = default(bool?), bool? allowOutboundEnabled = default(bool?), string authentication = default(string)) + { + AllowInboundEnabled = allowInboundEnabled; + AllowOutboundEnabled = allowOutboundEnabled; + Authentication = authentication; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets allow Inbound traffic to managed instance DTC. + /// + [JsonProperty(PropertyName = "allowInboundEnabled")] + public bool? AllowInboundEnabled { get; set; } + + /// + /// Gets or sets allow Outbound traffic of managed instance DTC. + /// + [JsonProperty(PropertyName = "allowOutboundEnabled")] + public bool? AllowOutboundEnabled { get; set; } + + /// + /// Gets or sets authentication type of managed instance DTC. + /// + [JsonProperty(PropertyName = "authentication")] + public string Authentication { get; set; } + + } +} diff --git a/src/Sql/Sql.Sdk/Generated/SdkInfo_SqlManagementClient.cs b/src/Sql/Sql.Sdk/Generated/SdkInfo_SqlManagementClient.cs index c75dee399c64..8fdac28ddeff 100644 --- a/src/Sql/Sql.Sdk/Generated/SdkInfo_SqlManagementClient.cs +++ b/src/Sql/Sql.Sdk/Generated/SdkInfo_SqlManagementClient.cs @@ -69,6 +69,7 @@ public static IEnumerable> ApiInfo_SqlManagementCl new Tuple("Sql", "ManagedInstanceAdministrators", "2020-11-01-preview"), new Tuple("Sql", "ManagedInstanceAdvancedThreatProtectionSettings", "2022-02-01-preview"), new Tuple("Sql", "ManagedInstanceAzureADOnlyAuthentications", "2020-11-01-preview"), + new Tuple("Sql", "ManagedInstanceDtcs", "2022-05-01-preview"), new Tuple("Sql", "ManagedInstanceEncryptionProtectors", "2020-11-01-preview"), new Tuple("Sql", "ManagedInstanceKeys", "2020-11-01-preview"), new Tuple("Sql", "ManagedInstanceLongTermRetentionPolicies", "2020-11-01-preview"), diff --git a/src/Sql/Sql.Sdk/Generated/SqlManagementClient.cs b/src/Sql/Sql.Sdk/Generated/SqlManagementClient.cs index c04256ac320c..6d8e8309a46c 100644 --- a/src/Sql/Sql.Sdk/Generated/SqlManagementClient.cs +++ b/src/Sql/Sql.Sdk/Generated/SqlManagementClient.cs @@ -486,6 +486,11 @@ public partial class SqlManagementClient : ServiceClient, I /// public virtual IManagedServerDnsAliasesOperations ManagedServerDnsAliases { get; private set; } + /// + /// Gets the IManagedInstanceDtcsOperations. + /// + public virtual IManagedInstanceDtcsOperations ManagedInstanceDtcs { get; private set; } + /// /// Initializes a new instance of the SqlManagementClient class. /// @@ -811,6 +816,7 @@ private void Initialize() DatabaseAdvancedThreatProtectionSettings = new DatabaseAdvancedThreatProtectionSettingsOperations(this); ServerAdvancedThreatProtectionSettings = new ServerAdvancedThreatProtectionSettingsOperations(this); ManagedServerDnsAliases = new ManagedServerDnsAliasesOperations(this); + ManagedInstanceDtcs = new ManagedInstanceDtcsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/src/Sql/Sql.Sdk/README.md b/src/Sql/Sql.Sdk/README.md index d214ae090068..a0d1a3db832e 100644 --- a/src/Sql/Sql.Sdk/README.md +++ b/src/Sql/Sql.Sdk/README.md @@ -107,6 +107,7 @@ input-file: - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-02-01-preview/DatabaseAdvancedThreatProtectionSettings.json - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-02-01-preview/ServerAdvancedThreatProtectionSettings.json - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2021-11-01-preview/ManagedServerDnsAliases.json + - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-05-01-preview/ManagedInstanceDtcs.json output-folder: Generated diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 9914600b06c2..948ec6976094 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -292,7 +292,9 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Update-AzSqlDatabaseAdvancedThreatProtectionSetting', 'Update-AzSqlServerAdvancedThreatProtectionSetting', 'Update-AzSqlInstanceDatabaseAdvancedThreatProtectionSetting', - 'Update-AzSqlInstanceAdvancedThreatProtectionSetting' + 'Update-AzSqlInstanceAdvancedThreatProtectionSetting', + 'Get-AzSqlInstanceDtc', + 'Set-AzSqlInstanceDtc' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/GetAzureSqlManagedInstanceDtc.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/GetAzureSqlManagedInstanceDtc.cs new file mode 100644 index 000000000000..2aa4a4e56a51 --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/GetAzureSqlManagedInstanceDtc.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet; +using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; +using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Cmdlet +{ + + /// + /// Defines the Get-AzSqlInstance cmdlet + /// + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDtc", + DefaultParameterSetName = GetByNameParameterSet), + OutputType(typeof(AzureSqlManagedInstanceDtcModel))] + public class GetAzureSqlManagedInstanceDtc : ManagedInstanceDtcCmdletBase + { + private const string GetByNameParameterSet = "GetByNameParameterSet"; + private const string GetByParentObjectParameterSet = "GetByParentObjectParameterSet"; + private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; + + /// + /// Gets or sets the name of the resource group to use. + /// + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet, Position = 0, HelpMessage = "Name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of target managed instance. + /// + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet, Position = 1, HelpMessage = "Name of the managed instance.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string InstanceName { get; set; } + + /// + /// Gets or sets the instance Object + /// + [Parameter(Mandatory = true, ParameterSetName = GetByParentObjectParameterSet, ValueFromPipeline = true, Position = 0, HelpMessage = "Input object of the managed instance.")] + [ValidateNotNullOrEmpty] + public AzureSqlManagedInstanceModel InstanceObject { get; set; } + + /// + /// Gets or sets the instance DTC resource id + /// + [Parameter(Mandatory = true, ParameterSetName = GetByResourceIdParameterSet, ValueFromPipeline = true, Position = 0, HelpMessage = "Resource ID of the managed instance DTC.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + protected override AzureSqlManagedInstanceDtcModel GetEntity() + { + return ModelAdapter.GetManagedInstanceDtc(ResourceGroupName, InstanceName); + } + + public override void ExecuteCmdlet() + { + switch (ParameterSetName) + { + case GetByNameParameterSet: + // Default case, we're getting RG and MI names directly from args. + break; + case GetByParentObjectParameterSet: + // We need to extract RG and MI names from the Instance object. + ResourceGroupName = InstanceObject.ResourceGroupName; + InstanceName = InstanceObject.ManagedInstanceName; + break; + case GetByResourceIdParameterSet: + // We need to derive RG and MI names from resource id. + var resourceInfo = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceInfo.ResourceGroupName; + InstanceName = resourceInfo.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + break; + default: + break; + } + base.ExecuteCmdlet(); + } + + /// + /// No changes, thus nothing to persist. + /// + /// The entity retrieved + /// The unchanged entity + protected override AzureSqlManagedInstanceDtcModel PersistChanges(AzureSqlManagedInstanceDtcModel entity) + { + return entity; + } + } +} diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/ManagedInstanceDtcCmdletBase.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/ManagedInstanceDtcCmdletBase.cs new file mode 100644 index 000000000000..6bfa878ccb18 --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/ManagedInstanceDtcCmdletBase.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model; +using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Services; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet +{ + public abstract class ManagedInstanceDtcCmdletBase : AzureSqlCmdletBase + { + /// + /// Intializes the model adapter + /// + /// The server adapter + protected override AzureSqlManagedInstanceDtcAdapter InitModelAdapter() + { + return new AzureSqlManagedInstanceDtcAdapter(DefaultContext); + } + } +} diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs new file mode 100644 index 000000000000..237d3291e3d0 --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs @@ -0,0 +1,210 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet; +using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; +using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.ResourceManager.Version2021_01_01.Models; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Management.Automation; +using System.Text; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Cmdlet +{ + [Cmdlet(VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDtc", + DefaultParameterSetName = SetByNameParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(AzureSqlManagedInstanceDtcModel))] + public class SetAzureSqlManagedInstanceDtc: ManagedInstanceDtcCmdletBase + { + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByParentObjectParameterSet = "SetByParentObjectParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + + /// + /// Sets or sets the name of the resource group to use. + /// + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet, Position = 0, HelpMessage = "Name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + /// + /// Sets or sets the name of tarSet managed instance. + /// + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet, Position = 1, HelpMessage = "Name of the managed instance.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string InstanceName { get; set; } + + /// + /// Sets or sets the instance Object + /// + [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet, ValueFromPipeline = true, Position = 0, HelpMessage = "Input object of the managed instance.")] + [ValidateNotNullOrEmpty] + public AzureSqlManagedInstanceModel InstanceObject { get; set; } + + /// + /// Sets or sets the instance DTC resource id + /// + [Parameter(Mandatory = true, ParameterSetName = SetByInputObjectParameterSet, ValueFromPipeline = true, Position = 0, HelpMessage = "Input object of the managed instance DTC.")] + [ValidateNotNullOrEmpty] + public AzureSqlManagedInstanceDtcModel InputObject { get; set; } + + /// + /// Sets or sets the instance DTC resource id + /// + [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet, ValueFromPipeline = true, Position = 0, HelpMessage = "Resource ID of the managed instance DTC.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets whether or not the DTC is enabled. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, Position = 2, HelpMessage = "DTC enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, Position = 1, HelpMessage = "DTC enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "DTC enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 1, HelpMessage = "DTC enabled status.")] + public bool? DtcEnabled { get; set; } + + /// + /// Gets or sets the external DNS suffix search list. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, Position = 3, HelpMessage = "External DNS suffix search list.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, Position = 2, HelpMessage = "External DNS suffix search list.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "External DNS suffix search list.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 2, HelpMessage = "External DNS suffix search list.")] + public string[] ExternalDnsSuffixSearchList { get; set; } + + /// + /// Gets or sets allow XA Transactions to managed instance DTC. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, Position = 4, HelpMessage = "XA transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, Position = 3, HelpMessage = "XA transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "XA transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "XA transactions enabled status.")] + public bool? XaTransactionsEnabled { get; set; } + + /// + /// Gets or sets allow SNA LU 6.2 Transactions to managed instance DTC. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "SNA LU 6.2 transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "SNA LU 6.2 transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "SNA LU 6.2 transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "SNA LU 6.2 transactions enabled status.")] + public bool? SnaLu6point2TransactionsEnabled { get; set; } + + /// + /// Gets or sets default timeout for XA Transactions (in seconds). + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "XA transactions default timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "XA transactions default timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "XA transactions default timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "XA transactions default timeout.")] + public int? XaTransactionsDefaultTimeout { get; set; } + + /// + /// Gets or sets maximum timeout for XA Transactions (in seconds). + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "XA transactions maximum timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "XA transactions maximum timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "XA transactions maximum timeout.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "XA transactions maximum timeout.")] + public int? XaTransactionsMaximumTimeout { get; set; } + + /// + /// Gets or sets allow Inbound traffic to managed instance DTC. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "Enable inbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "Enable inbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "Enable inbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "Enable inbound traffic.")] + public bool? AllowInboundEnabled { get; set; } + + /// + /// Gets or sets allow Outbound traffic of managed instance DTC. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "Enable outbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "Enable outbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "Enable outbound traffic.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "Enable outbound traffic.")] + public bool? AllowOutboundEnabled { get; set; } + + /// + /// Gets or sets authentication type of managed instance DTC. + /// + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "Authentication type.")] + [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, HelpMessage = "Authentication type.")] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "Authentication type.")] + [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "Authentication type.")] + public string Authentication { get; set; } + + protected override AzureSqlManagedInstanceDtcModel GetEntity() + { + return ModelAdapter.GetManagedInstanceDtc(ResourceGroupName, InstanceName); + } + + public override void ExecuteCmdlet() + { + System.Diagnostics.Debugger.Launch(); + switch (ParameterSetName) + { + case SetByNameParameterSet: + // Default case, we're getting RG and MI names directly from args. + break; + case SetByParentObjectParameterSet: + // We need to extract RG and MI names from the Instance object. + ResourceGroupName = InstanceObject.ResourceGroupName; + InstanceName = InstanceObject.ManagedInstanceName; + break; + case SetByInputObjectParameterSet: + ResourceGroupName = InputObject.ResourceGroupName; + InstanceName = InputObject.ManagedInstanceName; + break; + case SetByResourceIdParameterSet: + // We need to derive RG and MI names from resource id. + var resourceInfo = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceInfo.ResourceGroupName; + InstanceName = resourceInfo.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + break; + default: + break; + } + + if (ShouldProcess( + string.Format(CultureInfo.InvariantCulture, Properties.Resources.SetAzureSqlInstanceDtcDescription, InstanceName, ResourceGroupName), + string.Format(CultureInfo.InvariantCulture, Properties.Resources.SetAzureSqlInstanceDtcWarning, InstanceName, ResourceGroupName), + Properties.Resources.ShouldProcessCaption)) + { + base.ExecuteCmdlet(); + } + } + + protected override AzureSqlManagedInstanceDtcModel ApplyUserInputToModel(AzureSqlManagedInstanceDtcModel model) + { + model.DtcEnabled = this.IsParameterBound(c => c.DtcEnabled)? DtcEnabled : model.DtcEnabled; + model.ExternalDnsSuffixSearchList = this.IsParameterBound(c => c.ExternalDnsSuffixSearchList) ? ExternalDnsSuffixSearchList : model.ExternalDnsSuffixSearchList; + model.SecuritySettings.XaTransactionsEnabled = this.IsParameterBound(c => c.XaTransactionsEnabled) ? XaTransactionsEnabled : model.SecuritySettings.XaTransactionsEnabled; + model.SecuritySettings.SnaLu6point2TransactionsEnabled = this.IsParameterBound(c => c.SnaLu6point2TransactionsEnabled) ? SnaLu6point2TransactionsEnabled : model.SecuritySettings.SnaLu6point2TransactionsEnabled; + model.SecuritySettings.XaTransactionsDefaultTimeout = this.IsParameterBound(c => c.XaTransactionsDefaultTimeout) ? XaTransactionsDefaultTimeout : model.SecuritySettings.XaTransactionsDefaultTimeout; + model.SecuritySettings.XaTransactionsMaximumTimeout = this.IsParameterBound(c => c.XaTransactionsMaximumTimeout) ? XaTransactionsMaximumTimeout : model.SecuritySettings.XaTransactionsMaximumTimeout; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled = this.IsParameterBound(c => c.AllowOutboundEnabled) ? AllowOutboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled = this.IsParameterBound(c => c.AllowInboundEnabled) ? AllowInboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication = this.IsParameterBound(c => c.Authentication) ? Authentication : model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication; + + return base.ApplyUserInputToModel(model); + } + + protected override AzureSqlManagedInstanceDtcModel PersistChanges(AzureSqlManagedInstanceDtcModel entity) + { + return ModelAdapter.SetManagedInstanceDtc(ResourceGroupName, InstanceName, entity); + } + } +} diff --git a/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs b/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs new file mode 100644 index 000000000000..9c63f7c399d8 --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Sql.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model +{ + /// + /// Represents core properties of Managed Instance DTC + /// + public class AzureSqlManagedInstanceDtcModel + { + /// + /// Gets or sets the resource group name. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the managed instance. + /// + public string ManagedInstanceName { get; set; } + + /// + /// Gets or sets the resource ID. + /// + public string Id { get; set; } + + /// + /// Gets or sets whether or not the DTC is enabled. + /// + public bool? DtcEnabled { get; set; } + + /// + /// Gets or sets the DTC host name DNS suffix. + /// + public string DtcHostNameDnsSuffix { get; set; } + + /// + /// Gets or sets the DTC host name. + /// + public string DtcHostName { get; set; } + + /// + /// Gets or sets the external DNS suffix search list. + /// + public IList ExternalDnsSuffixSearchList { get; set; } + + /// + /// Gets or sets the DTC security settings. + /// + public ManagedInstanceDtcSecuritySettings SecuritySettings { get; set; } + } +} diff --git a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs new file mode 100644 index 000000000000..27e459e9ab73 --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs @@ -0,0 +1,79 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model; +using Microsoft.Azure.Management.Sql.Models; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Services +{ + public class AzureSqlManagedInstanceDtcAdapter + { + /// + /// Gets or sets the AzureEndpointsCommunicator which has all the needed management clients + /// + private AzureSqlManagedInstanceDtcCommunicator Communicator { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + public AzureSqlManagedInstanceDtcAdapter(IAzureContext context) + { + Context = context; + Communicator = new AzureSqlManagedInstanceDtcCommunicator(Context); + } + + public AzureSqlManagedInstanceDtcModel GetManagedInstanceDtc(string resourceGroup, string managedInstanceName) + { + var resp = Communicator.Get(resourceGroup, managedInstanceName); + return CreateManagedInstanceDtcModelFromResponse(resourceGroup, managedInstanceName, resp); + } + + public AzureSqlManagedInstanceDtcModel SetManagedInstanceDtc(string resourceGroup, string managedInstanceName, AzureSqlManagedInstanceDtcModel dtcModel ) + { + Management.Sql.Models.ManagedInstanceDtc parameters = new Management.Sql.Models.ManagedInstanceDtc() + { + DtcEnabled = dtcModel.DtcEnabled, + ExternalDnsSuffixSearchList = dtcModel.ExternalDnsSuffixSearchList, + SecuritySettings = dtcModel.SecuritySettings, + + }; + + var resp = Communicator.CreateOrUpdate(resourceGroup, managedInstanceName, parameters); + return CreateManagedInstanceDtcModelFromResponse(resourceGroup, managedInstanceName, resp); + } + + private AzureSqlManagedInstanceDtcModel CreateManagedInstanceDtcModelFromResponse(string resourceGroup, string managedInstanceName, Management.Sql.Models.ManagedInstanceDtc managedInstanceDtc) + { + AzureSqlManagedInstanceDtcModel managedInstanceDtcModel = new AzureSqlManagedInstanceDtcModel(); + managedInstanceDtcModel.ManagedInstanceName = managedInstanceName; + managedInstanceDtcModel.Id = managedInstanceDtc.Id; + managedInstanceDtcModel.ResourceGroupName= resourceGroup; + managedInstanceDtcModel.DtcEnabled = managedInstanceDtc.DtcEnabled.GetValueOrDefault(); + + // Due to a bug in DTC workflows, the full host name is returned as a DTC host name DNS suffix. + // However, we can extract the suffix from the host name. + managedInstanceDtcModel.DtcHostName = managedInstanceDtc.DtcHostNameDnsSuffix; + managedInstanceDtcModel.DtcHostNameDnsSuffix = managedInstanceDtc.DtcHostNameDnsSuffix.Substring(managedInstanceDtc.DtcHostNameDnsSuffix.IndexOf('.') + 1); + managedInstanceDtcModel.ExternalDnsSuffixSearchList = managedInstanceDtc.ExternalDnsSuffixSearchList.ToArray(); + managedInstanceDtcModel.SecuritySettings = managedInstanceDtc.SecuritySettings; + + return managedInstanceDtcModel; + } + } +} diff --git a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcCommunicator.cs b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcCommunicator.cs new file mode 100644 index 000000000000..4aa4e207f54c --- /dev/null +++ b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcCommunicator.cs @@ -0,0 +1,85 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Management.Sql; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Services +{ + public class AzureSqlManagedInstanceDtcCommunicator + { + /// + /// The Sql client to be used by this end points communicator + /// + private static SqlManagementClient SqlClient { get; set; } + + /// + /// Gets or set the Azure subscription + /// + private static IAzureSubscription Subscription { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + /// + /// Creates a communicator for Managed instance + /// + /// The current azure context + public AzureSqlManagedInstanceDtcCommunicator(IAzureContext context) + { + Context = context; + if (context?.Subscription != Subscription) + { + Subscription = context?.Subscription; + SqlClient = null; + } + } + + /// + /// Gets the Managed instance + /// + public Management.Sql.Models.ManagedInstanceDtc Get(string resourceGroupName, string managedInstanceName) + { + return GetCurrentSqlClient().ManagedInstanceDtcs.Get(resourceGroupName, managedInstanceName); + } + + /// + /// Gets the Managed instance + /// + public Management.Sql.Models.ManagedInstanceDtc CreateOrUpdate(string resourceGroupName, string managedInstanceName, Management.Sql.Models.ManagedInstanceDtc parameters) + { + return GetCurrentSqlClient().ManagedInstanceDtcs.CreateOrUpdate(resourceGroupName, managedInstanceName, parameters); + } + + /// + /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Management client for the currently selected subscription. + private SqlManagementClient GetCurrentSqlClient() + { + // Get the SQL management client for the current subscription + if (SqlClient == null) + { + SqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager); + } + return SqlClient; + } + } +} diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index a3446a684ef1..c0a72eec3f66 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -1547,6 +1547,24 @@ internal static string SetAzureSqlInstanceDescription { } } + /// + /// Looks up a localized string similar to Updating DTC on managed instance '{1}' located in resource group '{0}'.. + /// + internal static string SetAzureSqlInstanceDtcDescription { + get { + return ResourceManager.GetString("SetAzureSqlInstanceDtcDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to update DTC on managed instance '{1}' located in resource group '{0}'?. + /// + internal static string SetAzureSqlInstanceDtcWarning { + get { + return ResourceManager.GetString("SetAzureSqlInstanceDtcWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Updating instance link named '{2}' on managed instance '{1}' located in resource group '{0}'.. /// diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index db7a176a97af..b66f35da47c6 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -739,4 +739,10 @@ IPv6 Firewall Rule with name: '{0}' does not exist for server '{1}'. + + Updating DTC on managed instance '{1}' located in resource group '{0}'. + + + Are you sure you want to update DTC on managed instance '{1}' located in resource group '{0}'? + \ No newline at end of file From b78dfcdf2fad7554af533ddcb7835acdf9a20a5a Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Mon, 23 Jan 2023 11:50:41 +0100 Subject: [PATCH 2/9] Removed debugger line --- .../ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs index 237d3291e3d0..9a216bca90ba 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs @@ -153,7 +153,6 @@ protected override AzureSqlManagedInstanceDtcModel GetEntity() public override void ExecuteCmdlet() { - System.Diagnostics.Debugger.Launch(); switch (ParameterSetName) { case SetByNameParameterSet: From cbe670b5b1a128028f97df49f5779f56f6507432 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Mon, 23 Jan 2023 20:53:43 +0100 Subject: [PATCH 3/9] Added tests and fixed input object parameter set --- .../ManagedInstanceDtcScenarioTests.cs | 42 + .../ManagedInstanceDtcScenarioTests.ps1 | 158 ++ .../TestGetAndSetManagedInstanceDtc.json | 1559 +++++++++++++++++ ...TestManagedInstanceDtcPipingScenarios.json | 980 +++++++++++ .../Cmdlet/SetAzureSqlManagedInstanceDtc.cs | 67 +- .../Model/AzureSqlManagedInstanceDtcModel.cs | 2 +- .../AzureSqlManagedInstanceDtcAdapter.cs | 2 +- 7 files changed, 2792 insertions(+), 18 deletions(-) create mode 100644 src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.cs create mode 100644 src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.cs new file mode 100644 index 000000000000..b3236a4debb7 --- /dev/null +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.cs @@ -0,0 +1,42 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ScenarioTest.SqlTests; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit.Abstractions; +using Xunit; + +namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests +{ + public class ManagedInstanceDtcScenarioTests : SqlTestRunner + { + public ManagedInstanceDtcScenarioTests(ITestOutputHelper output) : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAndSetManagedInstanceDtc() + { + TestRunner.RunTestScript("Test-ManagedInstanceDtcGetAndSetScenarios"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedInstanceDtcPipingScenarios() + { + TestRunner.RunTestScript("Test-ManagedInstanceDtcPipingScenarios"); + } + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 new file mode 100644 index 000000000000..744a914688eb --- /dev/null +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 @@ -0,0 +1,158 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +# Location to use for provisioning test managed instances +$instanceLocation = "westcentralus" + +<# + .SYNOPSIS + Tests regarding managed instance DNS aliases. +#> + +<# + .SYNOPSIS + Helper function for validating DTC object. + .DESCRIPTION + This function accepts DTC alias object and expected parameters. +#> +function ValidateDtc($managedInstanceDtcActualObject, $managedInstanceDtcExpectedObject) +{ + $properties = ($managedInstanceDtcExpectedObject | Get-Member -MemberType Property | Select-Object -ExpandProperty Name) + $securitySettings = ($managedInstanceDtcExpectedObject.SecuritySettings | Get-Member -MemberType Property | Select-Object -ExpandProperty Name) + $transactionManagerCommunicationSettings = ($managedInstanceDtcExpectedObject.SecuritySettings.TransactionManagerCommunicationSettings | Get-Member -MemberType Property | Select-Object -ExpandProperty Name) + + # Compare-Object cmdlet returns differences between 2 objects. It should return null if objects are equal. + Compare-Object $managedInstanceDtcActualObject $managedInstanceDtcExpectedObject -Property $properties | Assert-Null + Compare-Object $managedInstanceDtcActualObject.SecuritySettings $managedInstanceDtcExpectedObject.SecuritySettings -Property $securitySettings | Assert-Null + Compare-Object $managedInstanceDtcActualObject.SecuritySettings.TransactionManagerCommunicationSettings $managedInstanceDtcExpectedObject.SecuritySettings.TransactionManagerCommunicationSettings -Property $transactionManagerCommunicationSettings | Assert-Null +} + +<# + .SYNOPSIS + Tests Get and Set operations on Managed Instance DTC using different parameter sets. +#> +function Test-ManagedInstanceDtcGetAndSetScenarios +{ + # DTC test requires a paasv2 managed instance. Those instances currently aren't available on every region, and their creation can last too long. + # Because of that we are fetching a precreated instance. + Write-Debug "Fetching test MI" + $managedInstance = Get-AzSqlInstance -ResourceGroupName CustomerExperienceTeam_RG -Name skrivokapic-paasv2 + + #Get by name + Write-Debug "Get by name" + $originalDtcObject = Get-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName skrivokapic-paasv2 + $dtc = $originalDtcObject + $dtc.DtcEnabled = !$dtc.DtcEnabled + + #Set by name. Also use -AsJob in order to test that functionality. + Write-Debug "Set by name" + $dtcJob = Set-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName skrivokapic-paasv2 -DtcEnabled $dtc.DtcEnabled -AsJob + $dtcJob | Wait-Job + $updatedDtc = $dtcJob.Output + + #Validate + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by instance object + Write-Debug "Set by instance object" + $updatedDtc = Set-AzSqlInstanceDtc -InstanceObject $managedInstance -DtcEnabled $(!$dtc.DtcEnabled) + + #Get by instance object + Write-Debug "Get by instance object" + $dtc = Get-AzSqlInstanceDtc -InstanceObject $managedInstance + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by input Object + $dtc.SecuritySettings.XaTransactionsEnabled = !$dtc.SecuritySettings.XaTransactionsEnabled + + #XaTransactionsEnabled should be set from the object passed, and DtcEnabled should be set from the parameters + Write-Debug "Set by input object" + $updatedDtc = Set-AzSqlInstanceDtc -InputObject $dtc -DtcEnabled $(!$dtc.DtcEnabled) + $dtc.DtcEnabled = !$dtc.DtcEnabled + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set all parameters to different ones by resource ID. Authentication currently only supports "NoAuth", so we don't change that param + Write-Debug "Set all by resource ID" + $dtc.ExternalDnsSuffixSearchList.Add("newSuffix.test.net") + $xaTransactionsMaxTimeout = $dtc.XaTransactionsMaximumTimeout + 2000 + $xaTransactionsDefaultTimeout = $dtc.XaTransactionsMaximumTimeout + 1000 + $updatedDtc = Set-AzSqlInstanceDtc -ResourceId $dtc.Id -DtcEnabled $(!$dtc.DtcEnabled) -ExternalDnsSuffixSearchList $dtc.ExternalDnsSuffixSearchList` + -XaTransactionsEnabled $(!$dtc.SecuritySettings.XaTransactionsEnabled) -SnaLu6point2TransactionsEnabled $(!$dtc.SecuritySettings.SnaLu6point2TransactionsEnabled)` + -AllowInboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled) -AllowOutboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled)` + -XaTransactionsMaximumTimeout $xaTransactionsMaxTimeout -XaTransactionsDefaultTimeout $xaTransactionsDefaultTimeout + + #Get by resource ID + Write-Debug "Get by resource ID" + $dtc = Get-AzSqlInstanceDtc -ResourceId $dtc.Id + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Revert to original settings + Write-Debug "Revert to original DTC settings" + $updatedDtc = Set-AzSqlInstanceDtc -InputObject $originalDtcObject + + Write-Debug "Validating" + ValidateDtc $updatedDtc $originalDtcObject +} + +<# + .SYNOPSIS + Tests piping scenarios for ManagedIinstance DTC Get and Set operations. +#> +function Test-ManagedInstanceDtcPipingScenarios +{ + # DTC test requires a paasv2 managed instance. Those instances currently aren't available on every region, and their creation can last too long. + # Because of that we are fetching a precreated instance. + Write-Debug "Fetching test MI" + $managedInstance = Get-AzSqlInstance -ResourceGroupName CustomerExperienceTeam_RG -Name skrivokapic-paasv2 + + #Get by piping parent object + Write-Debug "Get by piping parent object" + $originalDtc = $managedInstance | Get-AzSqlInstanceDtc + $dtc = $originalDtc + Assert-NotNull $dtc + + #Set by piping parent object + Write-Debug "Set by piping parent object" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $managedInstance | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Get by piping resource ID + Write-Debug "Get by piping resource ID" + $newDtc = $dtc.Id | Get-AzSqlInstanceDtc + Write-Debug "Validating" + ValidateDtc $newDtc $dtc + + #Set by piping resource ID + Write-Debug "Set by piping resource ID" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $dtc.Id | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by piping input object + Write-Debug "Set by piping input object" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $dtc | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json new file mode 100644 index 000000000000..da47bb01d5c7 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json @@ -0,0 +1,1559 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjI/YXBpLXZlcnNpb249MjAyMS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "557774a1-0bcd-4a5f-9f98-3232863fe764" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7605bd2a-94f7-4e89-a308-54624fb77c37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f51a01b7-c22e-4997-b033-7c9d14be8517" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193653Z:f51a01b7-c22e-4997-b033-7c9d14be8517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:36:52 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"principalId\": \"7e5a0d1e-02b9-4cd1-a011-fcaf39540a5d\",\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"skrivokapic-paasv2.f1d03b4768ef.database.windows.net\",\r\n \"administratorLogin\": \"krivi\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-skrivokapic-multiaz-paasv2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"f1d03b4768ef\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"currentBackupStorageRedundancy\": \"Zone\",\r\n \"requestedBackupStorageRedundancy\": \"Zone\",\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2\",\r\n \"name\": \"skrivokapic-paasv2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d24861e-e273-4869-ae09-5c0fb81c7aba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7750b342-5e2e-4dd4-98c1-2bb9e3748b96" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "64aa3917-209b-4cc7-9180-e37f7f246618" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193654Z:64aa3917-209b-4cc7-9180-e37f7f246618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:36:54 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fe447fc-562c-4d40-81b2-676a4079c6cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e14d74f3-6462-4d23-8dea-fcd65ffcb412" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ec247281-ae68-4836-ae52-b75ec579f41a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193655Z:ec247281-ae68-4836-ae52-b75ec579f41a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:36:55 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0b96fb2-a7fa-460f-810c-619ab5173776" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "700d67b6-7140-4743-b58a-70cbb8106e9a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193757Z:700d67b6-7140-4743-b58a-70cbb8106e9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:37:57 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "63a2b71d-0170-4e15-bca3-2d1913c4a9d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "129141f4-1ebd-4101-a780-c1ae6d423d19" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193758Z:129141f4-1ebd-4101-a780-c1ae6d423d19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:37:57 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3342149b-c6f5-4ed7-831f-a01fb121fb60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d487aae6-41a1-4d7a-b533-b7f9a3973749" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193900Z:d487aae6-41a1-4d7a-b533-b7f9a3973749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:38:59 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8433752-9430-4694-b1da-d8e010809d95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55264aca-d614-40c2-a82b-01b9dd92526f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "4874fc4e-cadf-4a3b-af90-4b5d4b3d44dc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193900Z:4874fc4e-cadf-4a3b-af90-4b5d4b3d44dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:38:59 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bea539df-eda6-4743-a5b0-e1ce20d810be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee8cf2b1-d13b-4614-9b7f-66b2fe392d42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1052967c-1f55-44c1-949d-4d2bae36864c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193901Z:1052967c-1f55-44c1-949d-4d2bae36864c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:39:00 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bea539df-eda6-4743-a5b0-e1ce20d810be" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fcd84809-00d4-47d9-b6c8-2bc1965536fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "815f1f2a-a929-440c-bf3e-6dc86400a006" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194003Z:815f1f2a-a929-440c-bf3e-6dc86400a006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:40:02 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "497c5402-6395-4fcb-bc4b-9eec5d99be62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27a63f69-bd42-41f3-9acf-322f350b4d3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "e2dc436d-a07f-40a1-8896-da088c54caec" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194003Z:e2dc436d-a07f-40a1-8896-da088c54caec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:40:03 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "497c5402-6395-4fcb-bc4b-9eec5d99be62" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b784dd0-6d8b-41c2-8076-111a7f24ad6e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "24b138c9-1b07-4380-8386-790f8e9df7a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194105Z:24b138c9-1b07-4380-8386-790f8e9df7a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:41:05 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "582fa244-9823-4fa2-9d0e-3e5cd0348cee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "479629a9-b54e-4729-8b61-70435a182e04" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "f8fba01c-626b-4e5c-870c-f0a4e058ba61" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194105Z:f8fba01c-626b-4e5c-870c-f0a4e058ba61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:41:05 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df87f0b-37c5-439e-ac06-f4820f948b9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e754c074-4fd7-4430-b6ef-25f1242e9069" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "fe168255-93cb-4573-bb9d-1f102ccf8694" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194106Z:fe168255-93cb-4573-bb9d-1f102ccf8694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:41:06 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df87f0b-37c5-439e-ac06-f4820f948b9f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18651cf1-314f-4d7f-ba02-ff62d6afe808" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "105d9fa6-c3f2-4b9f-ab65-dca432a6e40d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194208Z:105d9fa6-c3f2-4b9f-ab65-dca432a6e40d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:42:07 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d9e8871-809d-4771-9dd8-c095d7a15594" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e814e4f4-4ed8-48e2-b09f-0b47e715d905?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "e814e4f4-4ed8-48e2-b09f-0b47e715d905" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "060ea000-e392-4efd-8c38-ff30ae91480a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193656Z:060ea000-e392-4efd-8c38-ff30ae91480a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:36:56 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/4dbbb78f-fe59-4a94-bf13-a5d7947045ae?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "4dbbb78f-fe59-4a94-bf13-a5d7947045ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "af89c6d0-99b6-4daa-89b7-916c9203043f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193759Z:af89c6d0-99b6-4daa-89b7-916c9203043f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:37:58 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bea539df-eda6-4743-a5b0-e1ce20d810be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "522" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/7169ea2b-539a-47d3-b092-6e84bbf347f8?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "7169ea2b-539a-47d3-b092-6e84bbf347f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "4bc113c7-679b-4f39-9658-690c358576e9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193901Z:4bc113c7-679b-4f39-9658-690c358576e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:39:00 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "497c5402-6395-4fcb-bc4b-9eec5d99be62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "558" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/ac0b1856-64eb-40b7-aa6a-0400d28c7e62?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "ac0b1856-64eb-40b7-aa6a-0400d28c7e62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "27ccb1b9-9b26-4e2e-8d62-6a0985411c8b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194004Z:27ccb1b9-9b26-4e2e-8d62-6a0985411c8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:40:03 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df87f0b-37c5-439e-ac06-f4820f948b9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/8665a2b8-f389-4d26-9548-1c48fd533f24?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "8665a2b8-f389-4d26-9548-1c48fd533f24" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "faa31a55-5d15-46a2-b7fc-032cbb7d05f1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194106Z:faa31a55-5d15-46a2-b7fc-032cbb7d05f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:41:06 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e814e4f4-4ed8-48e2-b09f-0b47e715d905?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9lODE0ZTRmNC00ZWQ4LTQ4ZTItYjA5Zi0wYjQ3ZTcxNWQ5MDU/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c756f815-17ea-49fc-944c-867c9aa7dd5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d0be62f8-e451-4f3d-a2c2-db8d1c123537" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193757Z:d0be62f8-e451-4f3d-a2c2-db8d1c123537" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:37:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e814e4f4-4ed8-48e2-b09f-0b47e715d905\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:36:56.583Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/4dbbb78f-fe59-4a94-bf13-a5d7947045ae?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi80ZGJiYjc4Zi1mZTU5LTRhOTQtYmYxMy1hNWQ3OTQ3MDQ1YWU/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9fa9cef1-30b9-4b95-ab29-9e7cade8115b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "df647f9c-8df2-4b96-b0a0-37908393bf61" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193859Z:df647f9c-8df2-4b96-b0a0-37908393bf61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:38:58 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4dbbb78f-fe59-4a94-bf13-a5d7947045ae\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:37:58.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/7169ea2b-539a-47d3-b092-6e84bbf347f8?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi83MTY5ZWEyYi01MzlhLTQ3ZDMtYjA5Mi02ZTg0YmJmMzQ3Zjg/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bea539df-eda6-4743-a5b0-e1ce20d810be" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "bce6b539-32f5-4f5b-95ea-33f4ef28fefd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "f7b54d0d-e6d9-4c71-a4db-56c5bbf5ff36" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194002Z:f7b54d0d-e6d9-4c71-a4db-56c5bbf5ff36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:40:01 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7169ea2b-539a-47d3-b092-6e84bbf347f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:39:01.64Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/ac0b1856-64eb-40b7-aa6a-0400d28c7e62?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9hYzBiMTg1Ni02NGViLTQwYjctYWE2YS0wNDAwZDI4YzdlNjI/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "497c5402-6395-4fcb-bc4b-9eec5d99be62" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cc2d3bff-195c-4622-97c9-d63993a612f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "16860ad6-4e61-48c7-879e-692f658f7d84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194104Z:16860ad6-4e61-48c7-879e-692f658f7d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:41:04 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac0b1856-64eb-40b7-aa6a-0400d28c7e62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:40:04.137Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/8665a2b8-f389-4d26-9548-1c48fd533f24?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi84NjY1YTJiOC1mMzg5LTRkMjYtOTU0OC0xYzQ4ZmQ1MzNmMjQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df87f0b-37c5-439e-ac06-f4820f948b9f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7de00c49-29c8-47a6-aa9a-fa79dc79d875" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "02d643cf-b8ff-4e16-a82b-c3a9079f0cf7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T194207Z:02d643cf-b8ff-4e16-a82b-c3a9079f0cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:42:07 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8665a2b8-f389-4d26-9548-1c48fd533f24\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:41:06.543Z\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8313371e-0879-428e-b1da-6353575a9192" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json new file mode 100644 index 000000000000..5405c37504a1 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json @@ -0,0 +1,980 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjI/YXBpLXZlcnNpb249MjAyMS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d809258-d279-454e-a17b-56417a7b16d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "edff5b88-850c-4d3d-8772-73ec3e815b7d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e3c27358-51ec-41b5-af5f-714da45b471b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193207Z:e3c27358-51ec-41b5-af5f-714da45b471b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:32:06 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"principalId\": \"7e5a0d1e-02b9-4cd1-a011-fcaf39540a5d\",\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"skrivokapic-paasv2.f1d03b4768ef.database.windows.net\",\r\n \"administratorLogin\": \"krivi\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-skrivokapic-multiaz-paasv2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"f1d03b4768ef\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"currentBackupStorageRedundancy\": \"Zone\",\r\n \"requestedBackupStorageRedundancy\": \"Zone\",\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2\",\r\n \"name\": \"skrivokapic-paasv2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b923cf0b-e79c-44c8-bee2-dca95293ba1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9191fbf0-1b71-4a2b-94b3-6ced164d6683" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0153e31a-e267-423c-b991-4329c246b98f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193208Z:0153e31a-e267-423c-b991-4329c246b98f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:32:08 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccba8128-0474-47e7-a278-03df4217677e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3dc055e9-e45b-4d64-9525-ceda8f841f3c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c1682f0d-a387-47df-aa8d-028a2e938f42" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193208Z:c1682f0d-a387-47df-aa8d-028a2e938f42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:32:08 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccba8128-0474-47e7-a278-03df4217677e" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8066957-420b-47f8-b5f0-864930e36ad9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fad6abac-ef76-4da5-9f0d-71aba0752db1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193311Z:fad6abac-ef76-4da5-9f0d-71aba0752db1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:33:11 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ccac6b3-916c-4012-af91-2c5ad3d7c1c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4db747d0-c5c2-4cc4-8971-2adb4ce90215" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d8892ce5-cf0e-49d7-9d9c-24422448288e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193311Z:d8892ce5-cf0e-49d7-9d9c-24422448288e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:33:11 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a87b4872-2c08-4fe1-a5dd-321c2d5944f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "48f2eb33-eb0d-42f6-8ac9-7cd8b33e617a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193312Z:48f2eb33-eb0d-42f6-8ac9-7cd8b33e617a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:33:12 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56254c24-1d92-4ea3-9539-8046a3f268c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "009ef635-1555-4aad-8c1f-7d9bc157da34" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193414Z:009ef635-1555-4aad-8c1f-7d9bc157da34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:34:14 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a79dc9-f858-4f77-9e3b-76f162d713d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55a630b9-737c-44cc-97bc-5d721360152c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "ce2cc0cc-5fb3-4967-8fd9-bdab463b2808" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193414Z:ce2cc0cc-5fb3-4967-8fd9-bdab463b2808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:34:14 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a79dc9-f858-4f77-9e3b-76f162d713d8" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76ba3733-87f0-45ca-84de-a85de702041e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "4474dbc4-47b1-4110-b762-7e67108ece45" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193516Z:4474dbc4-47b1-4110-b762-7e67108ece45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:35:16 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccba8128-0474-47e7-a278-03df4217677e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e12b6963-e69f-4c94-ae62-c6c5b8efd79b?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "e12b6963-e69f-4c94-ae62-c6c5b8efd79b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "377ba7fb-c47b-4de2-80b8-aa6934ca43c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193209Z:377ba7fb-c47b-4de2-80b8-aa6934ca43c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:32:09 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/40c77a6e-fb7e-44e6-b949-25a73a1fe1b7?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "40c77a6e-fb7e-44e6-b949-25a73a1fe1b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5ecb0067-60a7-43df-8a00-3cc18d0308ef" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193312Z:5ecb0067-60a7-43df-8a00-3cc18d0308ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:33:12 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a79dc9-f858-4f77-9e3b-76f162d713d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/811ef340-9ed0-4bcd-a3d3-2654946cb549?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "811ef340-9ed0-4bcd-a3d3-2654946cb549" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "029f53f6-06e4-4c2d-b714-09fcd7eec74e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193415Z:029f53f6-06e4-4c2d-b714-09fcd7eec74e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:34:15 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e12b6963-e69f-4c94-ae62-c6c5b8efd79b?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9lMTJiNjk2My1lNjlmLTRjOTQtYWU2Mi1jNmM1YjhlZmQ3OWI/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccba8128-0474-47e7-a278-03df4217677e" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0c9caf3b-aae1-44f1-b90b-fb3a02d97779" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a42ce3bd-1241-4aa1-a920-0a19d4573a1f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193310Z:a42ce3bd-1241-4aa1-a920-0a19d4573a1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:33:10 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e12b6963-e69f-4c94-ae62-c6c5b8efd79b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:32:09.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/40c77a6e-fb7e-44e6-b949-25a73a1fe1b7?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi80MGM3N2E2ZS1mYjdlLTQ0ZTYtYjk0OS0yNWE3M2ExZmUxYjc/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4d1e7c90-b3e7-4b23-9ed9-22fa8464644e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "24b2169c-8ec4-41c6-b31a-94d47c3210a6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193413Z:24b2169c-8ec4-41c6-b31a-94d47c3210a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:34:13 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40c77a6e-fb7e-44e6-b949-25a73a1fe1b7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:33:12.687Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/811ef340-9ed0-4bcd-a3d3-2654946cb549?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi84MTFlZjM0MC05ZWQwLTRiY2QtYTNkMy0yNjU0OTQ2Y2I1NDk/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a79dc9-f858-4f77-9e3b-76f162d713d8" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ee3b9278-86af-42c1-92c8-da9e1dc59ae5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "119f5f5c-4cfe-43f5-a90f-bb5e89d0ed63" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230123T193515Z:119f5f5c-4cfe-43f5-a90f-bb5e89d0ed63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 23 Jan 2023 19:35:15 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"811ef340-9ed0-4bcd-a3d3-2654946cb549\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:34:15.34Z\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8313371e-0879-428e-b1da-6353575a9192" + } +} \ No newline at end of file diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs index 9a216bca90ba..7b0f93d5f28b 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs @@ -1,18 +1,28 @@ -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet; using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; using Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.Azure.Management.ResourceManager.Version2021_01_01.Models; -using Microsoft.Azure.Management.Sql.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Management.Automation; -using System.Text; namespace Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Cmdlet { @@ -81,7 +91,7 @@ public class SetAzureSqlManagedInstanceDtc: ManagedInstanceDtcCmdletBase [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, Position = 2, HelpMessage = "External DNS suffix search list.")] [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "External DNS suffix search list.")] [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 2, HelpMessage = "External DNS suffix search list.")] - public string[] ExternalDnsSuffixSearchList { get; set; } + public List ExternalDnsSuffixSearchList { get; set; } /// /// Gets or sets allow XA Transactions to managed instance DTC. @@ -146,6 +156,18 @@ public class SetAzureSqlManagedInstanceDtc: ManagedInstanceDtcCmdletBase [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "Authentication type.")] public string Authentication { get; set; } + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background.")] + public SwitchParameter AsJob { get; set; } + + /// + /// Defines whether it is ok to skip the requesting of confirmation + /// + [Parameter(Mandatory = false, HelpMessage = "Skip confirmation message for performing the action.")] + public SwitchParameter Force { get; set; } + protected override AzureSqlManagedInstanceDtcModel GetEntity() { return ModelAdapter.GetManagedInstanceDtc(ResourceGroupName, InstanceName); @@ -188,16 +210,29 @@ public override void ExecuteCmdlet() protected override AzureSqlManagedInstanceDtcModel ApplyUserInputToModel(AzureSqlManagedInstanceDtcModel model) { - model.DtcEnabled = this.IsParameterBound(c => c.DtcEnabled)? DtcEnabled : model.DtcEnabled; - model.ExternalDnsSuffixSearchList = this.IsParameterBound(c => c.ExternalDnsSuffixSearchList) ? ExternalDnsSuffixSearchList : model.ExternalDnsSuffixSearchList; - model.SecuritySettings.XaTransactionsEnabled = this.IsParameterBound(c => c.XaTransactionsEnabled) ? XaTransactionsEnabled : model.SecuritySettings.XaTransactionsEnabled; - model.SecuritySettings.SnaLu6point2TransactionsEnabled = this.IsParameterBound(c => c.SnaLu6point2TransactionsEnabled) ? SnaLu6point2TransactionsEnabled : model.SecuritySettings.SnaLu6point2TransactionsEnabled; - model.SecuritySettings.XaTransactionsDefaultTimeout = this.IsParameterBound(c => c.XaTransactionsDefaultTimeout) ? XaTransactionsDefaultTimeout : model.SecuritySettings.XaTransactionsDefaultTimeout; - model.SecuritySettings.XaTransactionsMaximumTimeout = this.IsParameterBound(c => c.XaTransactionsMaximumTimeout) ? XaTransactionsMaximumTimeout : model.SecuritySettings.XaTransactionsMaximumTimeout; - model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled = this.IsParameterBound(c => c.AllowOutboundEnabled) ? AllowOutboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled; - model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled = this.IsParameterBound(c => c.AllowInboundEnabled) ? AllowInboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled; - model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication = this.IsParameterBound(c => c.Authentication) ? Authentication : model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication; - + if (!ParameterSetName.Equals(SetByInputObjectParameterSet)) + { + model.DtcEnabled = this.IsParameterBound(c => c.DtcEnabled) ? DtcEnabled : model.DtcEnabled; + model.ExternalDnsSuffixSearchList = this.IsParameterBound(c => c.ExternalDnsSuffixSearchList) ? ExternalDnsSuffixSearchList : model.ExternalDnsSuffixSearchList; + model.SecuritySettings.XaTransactionsEnabled = this.IsParameterBound(c => c.XaTransactionsEnabled) ? XaTransactionsEnabled : model.SecuritySettings.XaTransactionsEnabled; + model.SecuritySettings.SnaLu6point2TransactionsEnabled = this.IsParameterBound(c => c.SnaLu6point2TransactionsEnabled) ? SnaLu6point2TransactionsEnabled : model.SecuritySettings.SnaLu6point2TransactionsEnabled; + model.SecuritySettings.XaTransactionsDefaultTimeout = this.IsParameterBound(c => c.XaTransactionsDefaultTimeout) ? XaTransactionsDefaultTimeout : model.SecuritySettings.XaTransactionsDefaultTimeout; + model.SecuritySettings.XaTransactionsMaximumTimeout = this.IsParameterBound(c => c.XaTransactionsMaximumTimeout) ? XaTransactionsMaximumTimeout : model.SecuritySettings.XaTransactionsMaximumTimeout; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled = this.IsParameterBound(c => c.AllowOutboundEnabled) ? AllowOutboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled = this.IsParameterBound(c => c.AllowInboundEnabled) ? AllowInboundEnabled : model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication = this.IsParameterBound(c => c.Authentication) ? Authentication : model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication; + } else + { + model.DtcEnabled = this.IsParameterBound(c => c.DtcEnabled) ? DtcEnabled : InputObject.DtcEnabled; + model.ExternalDnsSuffixSearchList = this.IsParameterBound(c => c.ExternalDnsSuffixSearchList) ? ExternalDnsSuffixSearchList : InputObject.ExternalDnsSuffixSearchList; + model.SecuritySettings.XaTransactionsEnabled = this.IsParameterBound(c => c.XaTransactionsEnabled) ? XaTransactionsEnabled : InputObject.SecuritySettings.XaTransactionsEnabled; + model.SecuritySettings.SnaLu6point2TransactionsEnabled = this.IsParameterBound(c => c.SnaLu6point2TransactionsEnabled) ? SnaLu6point2TransactionsEnabled : InputObject.SecuritySettings.SnaLu6point2TransactionsEnabled; + model.SecuritySettings.XaTransactionsDefaultTimeout = this.IsParameterBound(c => c.XaTransactionsDefaultTimeout) ? XaTransactionsDefaultTimeout : InputObject.SecuritySettings.XaTransactionsDefaultTimeout; + model.SecuritySettings.XaTransactionsMaximumTimeout = this.IsParameterBound(c => c.XaTransactionsMaximumTimeout) ? XaTransactionsMaximumTimeout : InputObject.SecuritySettings.XaTransactionsMaximumTimeout; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled = this.IsParameterBound(c => c.AllowOutboundEnabled) ? AllowOutboundEnabled : InputObject.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled = this.IsParameterBound(c => c.AllowInboundEnabled) ? AllowInboundEnabled : InputObject.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled; + model.SecuritySettings.TransactionManagerCommunicationSettings.Authentication = this.IsParameterBound(c => c.Authentication) ? Authentication : InputObject.SecuritySettings.TransactionManagerCommunicationSettings.Authentication; + } return base.ApplyUserInputToModel(model); } diff --git a/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs b/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs index 9c63f7c399d8..4bc986e54134 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Model/AzureSqlManagedInstanceDtcModel.cs @@ -55,7 +55,7 @@ public class AzureSqlManagedInstanceDtcModel /// /// Gets or sets the external DNS suffix search list. /// - public IList ExternalDnsSuffixSearchList { get; set; } + public List ExternalDnsSuffixSearchList { get; set; } /// /// Gets or sets the DTC security settings. diff --git a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs index 27e459e9ab73..e8c38b769cce 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs @@ -70,7 +70,7 @@ private AzureSqlManagedInstanceDtcModel CreateManagedInstanceDtcModelFromRespons // However, we can extract the suffix from the host name. managedInstanceDtcModel.DtcHostName = managedInstanceDtc.DtcHostNameDnsSuffix; managedInstanceDtcModel.DtcHostNameDnsSuffix = managedInstanceDtc.DtcHostNameDnsSuffix.Substring(managedInstanceDtc.DtcHostNameDnsSuffix.IndexOf('.') + 1); - managedInstanceDtcModel.ExternalDnsSuffixSearchList = managedInstanceDtc.ExternalDnsSuffixSearchList.ToArray(); + managedInstanceDtcModel.ExternalDnsSuffixSearchList = managedInstanceDtc.ExternalDnsSuffixSearchList.ToList(); managedInstanceDtcModel.SecuritySettings = managedInstanceDtc.SecuritySettings; return managedInstanceDtcModel; From 28790ea4ba6fde7a90be3870c0554999f476b1c3 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Tue, 24 Jan 2023 16:28:26 +0100 Subject: [PATCH 4/9] Updated help and tests --- src/Sql/Sql.Test/ScenarioTests/Common.ps1 | 25 +- .../ManagedInstanceDtcScenarioTests.ps1 | 213 +- .../TestGetAndSetManagedInstanceDtc.json | 3824 ++++++++++++-- ...TestManagedInstanceDtcPipingScenarios.json | 4497 ++++++++++++++++- src/Sql/Sql/ChangeLog.md | 3 + src/Sql/Sql/help/Get-AzSqlInstanceDtc.md | 188 + src/Sql/Sql/help/Set-AzSqlInstanceDtc.md | 456 ++ 7 files changed, 8506 insertions(+), 700 deletions(-) create mode 100644 src/Sql/Sql/help/Get-AzSqlInstanceDtc.md create mode 100644 src/Sql/Sql/help/Set-AzSqlInstanceDtc.md diff --git a/src/Sql/Sql.Test/ScenarioTests/Common.ps1 b/src/Sql/Sql.Test/ScenarioTests/Common.ps1 index f758a5f7e6dd..d48851615b43 100644 --- a/src/Sql/Sql.Test/ScenarioTests/Common.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/Common.ps1 @@ -955,11 +955,27 @@ function Get-DefaultManagedInstanceParameters() } } +function Get-DefaultManagedInstanceParametersV2() +{ + return @{ + rg = "CustomerExperienceTeam_RG"; + location = "westcentralus"; + subnet = "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance"; + subscriptionId = "8313371e-0879-428e-b1da-6353575a9192"; + defaultMI = "autobot-managed-instance"; + defaultMIDB = "autobot-managed-database"; + sku = "GP_Gen5"; + vCore = 4; + storageSizeInGb = 64; + timezone = "Central Europe Standard Time"; + } +} + <# .SYNOPSIS Creates the test environment needed to perform the Sql managed instance CRUD tests #> -function Create-ManagedInstanceForTest ($resourceGroup, $vCore, $subnetId) +function Create-ManagedInstanceForTest ($resourceGroup, $vCore, $subnetId, $isV2) { if($vCore -eq $null) { @@ -973,7 +989,12 @@ function Create-ManagedInstanceForTest ($resourceGroup, $vCore, $subnetId) $managedInstanceName = Get-ManagedInstanceName $credentials = Get-ServerCredential - $params = Get-DefaultManagedInstanceParameters + if($isV2) { + $params = Get-DefaultManagedInstanceParametersV2 + } + else { + $params = Get-DefaultManagedInstanceParameters + } $skuName = "GP_Gen5" if($resourceGroup -eq $null) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 index 744a914688eb..fcf2fd3d4569 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceDtcScenarioTests.ps1 @@ -44,72 +44,77 @@ function ValidateDtc($managedInstanceDtcActualObject, $managedInstanceDtcExpecte #> function Test-ManagedInstanceDtcGetAndSetScenarios { - # DTC test requires a paasv2 managed instance. Those instances currently aren't available on every region, and their creation can last too long. - # Because of that we are fetching a precreated instance. - Write-Debug "Fetching test MI" - $managedInstance = Get-AzSqlInstance -ResourceGroupName CustomerExperienceTeam_RG -Name skrivokapic-paasv2 - - #Get by name - Write-Debug "Get by name" - $originalDtcObject = Get-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName skrivokapic-paasv2 - $dtc = $originalDtcObject - $dtc.DtcEnabled = !$dtc.DtcEnabled - - #Set by name. Also use -AsJob in order to test that functionality. - Write-Debug "Set by name" - $dtcJob = Set-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName skrivokapic-paasv2 -DtcEnabled $dtc.DtcEnabled -AsJob - $dtcJob | Wait-Job - $updatedDtc = $dtcJob.Output - - #Validate - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Set by instance object - Write-Debug "Set by instance object" - $updatedDtc = Set-AzSqlInstanceDtc -InstanceObject $managedInstance -DtcEnabled $(!$dtc.DtcEnabled) + try { + Write-Debug "Creating test MI" + $rg = Create-ResourceGroupForTest + $managedInstance = Create-ManagedInstanceForTest $rg $null $null $true + $managedInstanceName = $managedInstance.ManagedInstanceName + + #Get by name + Write-Debug "Get by name" + $originalDtcObject = Get-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName $managedInstanceName + $dtc = $originalDtcObject + $dtc.DtcEnabled = !$dtc.DtcEnabled + + #Set by name. Also use -AsJob in order to test that functionality. + Write-Debug "Set by name" + $dtcJob = Set-AzSqlInstanceDtc -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName $managedInstanceName -DtcEnabled $dtc.DtcEnabled -AsJob + $dtcJob | Wait-Job + $updatedDtc = $dtcJob.Output + + #Validate + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by instance object + Write-Debug "Set by instance object" + $updatedDtc = Set-AzSqlInstanceDtc -InstanceObject $managedInstance -DtcEnabled $(!$dtc.DtcEnabled) - #Get by instance object - Write-Debug "Get by instance object" - $dtc = Get-AzSqlInstanceDtc -InstanceObject $managedInstance - - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Set by input Object - $dtc.SecuritySettings.XaTransactionsEnabled = !$dtc.SecuritySettings.XaTransactionsEnabled - - #XaTransactionsEnabled should be set from the object passed, and DtcEnabled should be set from the parameters - Write-Debug "Set by input object" - $updatedDtc = Set-AzSqlInstanceDtc -InputObject $dtc -DtcEnabled $(!$dtc.DtcEnabled) - $dtc.DtcEnabled = !$dtc.DtcEnabled - - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Set all parameters to different ones by resource ID. Authentication currently only supports "NoAuth", so we don't change that param - Write-Debug "Set all by resource ID" - $dtc.ExternalDnsSuffixSearchList.Add("newSuffix.test.net") - $xaTransactionsMaxTimeout = $dtc.XaTransactionsMaximumTimeout + 2000 - $xaTransactionsDefaultTimeout = $dtc.XaTransactionsMaximumTimeout + 1000 - $updatedDtc = Set-AzSqlInstanceDtc -ResourceId $dtc.Id -DtcEnabled $(!$dtc.DtcEnabled) -ExternalDnsSuffixSearchList $dtc.ExternalDnsSuffixSearchList` - -XaTransactionsEnabled $(!$dtc.SecuritySettings.XaTransactionsEnabled) -SnaLu6point2TransactionsEnabled $(!$dtc.SecuritySettings.SnaLu6point2TransactionsEnabled)` - -AllowInboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled) -AllowOutboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled)` - -XaTransactionsMaximumTimeout $xaTransactionsMaxTimeout -XaTransactionsDefaultTimeout $xaTransactionsDefaultTimeout - - #Get by resource ID - Write-Debug "Get by resource ID" - $dtc = Get-AzSqlInstanceDtc -ResourceId $dtc.Id - - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Revert to original settings - Write-Debug "Revert to original DTC settings" - $updatedDtc = Set-AzSqlInstanceDtc -InputObject $originalDtcObject - - Write-Debug "Validating" - ValidateDtc $updatedDtc $originalDtcObject + #Get by instance object + Write-Debug "Get by instance object" + $dtc = Get-AzSqlInstanceDtc -InstanceObject $managedInstance + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by input Object + $dtc.SecuritySettings.XaTransactionsEnabled = !$dtc.SecuritySettings.XaTransactionsEnabled + + #XaTransactionsEnabled should be set from the object passed, and DtcEnabled should be set from the parameters + Write-Debug "Set by input object" + $updatedDtc = Set-AzSqlInstanceDtc -InputObject $dtc -DtcEnabled $(!$dtc.DtcEnabled) + $dtc.DtcEnabled = !$dtc.DtcEnabled + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set all parameters to different ones by resource ID. Authentication currently only supports "NoAuth", so we don't change that param + Write-Debug "Set all by resource ID" + $dtc.ExternalDnsSuffixSearchList.Add("newSuffix.test.net") + $xaTransactionsMaxTimeout = $dtc.XaTransactionsMaximumTimeout + 2000 + $xaTransactionsDefaultTimeout = $dtc.XaTransactionsMaximumTimeout + 1000 + $updatedDtc = Set-AzSqlInstanceDtc -ResourceId $dtc.Id -DtcEnabled $(!$dtc.DtcEnabled) -ExternalDnsSuffixSearchList $dtc.ExternalDnsSuffixSearchList` + -XaTransactionsEnabled $(!$dtc.SecuritySettings.XaTransactionsEnabled) -SnaLu6point2TransactionsEnabled $(!$dtc.SecuritySettings.SnaLu6point2TransactionsEnabled)` + -AllowInboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowInboundEnabled) -AllowOutboundEnabled $(!$dtc.SecuritySettings.TransactionManagerCommunicationSettings.AllowOutboundEnabled)` + -XaTransactionsMaximumTimeout $xaTransactionsMaxTimeout -XaTransactionsDefaultTimeout $xaTransactionsDefaultTimeout + + #Get by resource ID + Write-Debug "Get by resource ID" + $dtc = Get-AzSqlInstanceDtc -ResourceId $dtc.Id + + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Revert to original settings + Write-Debug "Revert to original DTC settings" + $updatedDtc = Set-AzSqlInstanceDtc -InputObject $originalDtcObject + + Write-Debug "Validating" + ValidateDtc $updatedDtc $originalDtcObject + } + finally { + Remove-ResourceGroupForTest $rg + } } <# @@ -118,41 +123,45 @@ function Test-ManagedInstanceDtcGetAndSetScenarios #> function Test-ManagedInstanceDtcPipingScenarios { - # DTC test requires a paasv2 managed instance. Those instances currently aren't available on every region, and their creation can last too long. - # Because of that we are fetching a precreated instance. - Write-Debug "Fetching test MI" - $managedInstance = Get-AzSqlInstance -ResourceGroupName CustomerExperienceTeam_RG -Name skrivokapic-paasv2 - - #Get by piping parent object - Write-Debug "Get by piping parent object" - $originalDtc = $managedInstance | Get-AzSqlInstanceDtc - $dtc = $originalDtc - Assert-NotNull $dtc - - #Set by piping parent object - Write-Debug "Set by piping parent object" - $dtc.DtcEnabled = !$dtc.DtcEnabled - $updatedDtc = $managedInstance | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Get by piping resource ID - Write-Debug "Get by piping resource ID" - $newDtc = $dtc.Id | Get-AzSqlInstanceDtc - Write-Debug "Validating" - ValidateDtc $newDtc $dtc - - #Set by piping resource ID - Write-Debug "Set by piping resource ID" - $dtc.DtcEnabled = !$dtc.DtcEnabled - $updatedDtc = $dtc.Id | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc - - #Set by piping input object - Write-Debug "Set by piping input object" - $dtc.DtcEnabled = !$dtc.DtcEnabled - $updatedDtc = $dtc | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled - Write-Debug "Validating" - ValidateDtc $updatedDtc $dtc + try { + Write-Debug "Creating test MI" + $rg = Create-ResourceGroupForTest + $managedInstance = Create-ManagedInstanceForTest $rg $null $null $true + + #Get by piping parent object + Write-Debug "Get by piping parent object" + $originalDtc = $managedInstance | Get-AzSqlInstanceDtc + $dtc = $originalDtc + Assert-NotNull $dtc + + #Set by piping parent object + Write-Debug "Set by piping parent object" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $managedInstance | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Get by piping resource ID + Write-Debug "Get by piping resource ID" + $newDtc = $dtc.Id | Get-AzSqlInstanceDtc + Write-Debug "Validating" + ValidateDtc $newDtc $dtc + + #Set by piping resource ID + Write-Debug "Set by piping resource ID" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $dtc.Id | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + + #Set by piping input object + Write-Debug "Set by piping input object" + $dtc.DtcEnabled = !$dtc.DtcEnabled + $updatedDtc = $dtc | Set-AzSqlInstanceDtc -DtcEnabled $dtc.DtcEnabled + Write-Debug "Validating" + ValidateDtc $updatedDtc $dtc + } + finally { + Remove-ResourceGroupForTest $rg + } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json index da47bb01d5c7..c6a37a45418e 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestGetAndSetManagedInstanceDtc.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2?api-version=2021-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjI/YXBpLXZlcnNpb249MjAyMS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourcegroups/ps2851?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlZ3JvdXBzL3BzMjg1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "557774a1-0bcd-4a5f-9f98-3232863fe764" + "f542cc82-2934-4222-aa88-6e8771acbeb6" ], "Accept-Language": [ "en-US" @@ -15,10 +15,16 @@ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -26,20 +32,17 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7605bd2a-94f7-4e89-a308-54624fb77c37" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-request-id": [ + "c056f6c9-7629-4896-a423-bf6512908e3c" ], "x-ms-correlation-request-id": [ - "f51a01b7-c22e-4997-b033-7c9d14be8517" + "c056f6c9-7629-4896-a423-bf6512908e3c" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193653Z:f51a01b7-c22e-4997-b033-7c9d14be8517" + "UKSOUTH:20230124T124002Z:c056f6c9-7629-4896-a423-bf6512908e3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:36:52 GMT" + "Tue, 24 Jan 2023 12:40:01 GMT" ], "Content-Length": [ - "1393" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"identity\": {\r\n \"principalId\": \"7e5a0d1e-02b9-4cd1-a011-fcaf39540a5d\",\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"skrivokapic-paasv2.f1d03b4768ef.database.windows.net\",\r\n \"administratorLogin\": \"krivi\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-skrivokapic-multiaz-paasv2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"f1d03b4768ef\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"currentBackupStorageRedundancy\": \"Zone\",\r\n \"requestedBackupStorageRedundancy\": \"Zone\",\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2\",\r\n \"name\": \"skrivokapic-paasv2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851\",\r\n \"name\": \"ps2851\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8d24861e-e273-4869-ae09-5c0fb81c7aba" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "Accept-Language": [ "en-US" @@ -82,6 +85,63 @@ ] }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fac33e50-87dd-4886-951f-93fc9e316f10" + ], + "x-ms-correlation-request-id": [ + "fac33e50-87dd-4886-951f-93fc9e316f10" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T124002Z:fac33e50-87dd-4886-951f-93fc9e316f10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 12:40:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps9183' under resource group 'ps2851' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -90,19 +150,19 @@ "no-cache" ], "x-ms-request-id": [ - "7750b342-5e2e-4dd4-98c1-2bb9e3748b96" + "25b2e355-d375-4b03-bb14-3b19ec519b09" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "64aa3917-209b-4cc7-9180-e37f7f246618" + "361a0d78-a244-4e8d-8abb-28b9ee98d6b7" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193654Z:64aa3917-209b-4cc7-9180-e37f7f246618" + "UKSOUTH:20230124T124108Z:361a0d78-a244-4e8d-8abb-28b9ee98d6b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +171,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:36:54 GMT" + "Tue, 24 Jan 2023 12:41:08 GMT" ], "Content-Length": [ - "722" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,19 +183,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe447fc-562c-4d40-81b2-676a4079c6cd" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -153,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "e14d74f3-6462-4d23-8dea-fcd65ffcb412" + "f8f494c1-7cb7-4861-9681-67376ea0cbc6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "ec247281-ae68-4836-ae52-b75ec579f41a" + "9babd2da-13f6-4409-be41-ee51e10da5ab" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193655Z:ec247281-ae68-4836-ae52-b75ec579f41a" + "UKSOUTH:20230124T124209Z:9babd2da-13f6-4409-be41-ee51e10da5ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +231,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:36:55 GMT" + "Tue, 24 Jan 2023 12:42:08 GMT" ], "Content-Length": [ - "722" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,14 +243,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", @@ -210,7 +270,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0b96fb2-a7fa-460f-810c-619ab5173776" + "4bb83be6-e815-4531-9703-4655d05ae30a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +279,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "700d67b6-7140-4743-b58a-70cbb8106e9a" + "ed93b019-6a4f-453e-b614-c0e3fe0eb404" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193757Z:700d67b6-7140-4743-b58a-70cbb8106e9a" + "UKSOUTH:20230124T124310Z:ed93b019-6a4f-453e-b614-c0e3fe0eb404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +291,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:37:57 GMT" + "Tue, 24 Jan 2023 12:43:09 GMT" ], "Content-Length": [ - "723" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,19 +303,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -273,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "63a2b71d-0170-4e15-bca3-2d1913c4a9d8" + "7bc2df81-5f86-420c-86ef-81afe5e148b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +339,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "129141f4-1ebd-4101-a780-c1ae6d423d19" + "615e19a9-38c0-4b26-b006-ad6a425dc5cd" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193758Z:129141f4-1ebd-4101-a780-c1ae6d423d19" + "UKSOUTH:20230124T124410Z:615e19a9-38c0-4b26-b006-ad6a425dc5cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +351,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:37:57 GMT" + "Tue, 24 Jan 2023 12:44:10 GMT" ], "Content-Length": [ - "723" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,16 +363,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -333,19 +390,19 @@ "no-cache" ], "x-ms-request-id": [ - "3342149b-c6f5-4ed7-831f-a01fb121fb60" + "c6a3a015-ec93-4d43-ae74-b4b28aa3b8da" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "d487aae6-41a1-4d7a-b533-b7f9a3973749" + "65b800c3-596d-42b8-9454-03103728632f" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193900Z:d487aae6-41a1-4d7a-b533-b7f9a3973749" + "UKSOUTH:20230124T124511Z:65b800c3-596d-42b8-9454-03103728632f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +411,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:38:59 GMT" + "Tue, 24 Jan 2023 12:45:11 GMT" ], "Content-Length": [ - "722" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,19 +423,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f8433752-9430-4694-b1da-d8e010809d95" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -396,19 +450,19 @@ "no-cache" ], "x-ms-request-id": [ - "55264aca-d614-40c2-a82b-01b9dd92526f" + "c54722ad-64a8-4d83-8080-14c3b5765bd4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "4874fc4e-cadf-4a3b-af90-4b5d4b3d44dc" + "f73e2947-8055-4ac7-a6bf-52d3716acb2b" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193900Z:4874fc4e-cadf-4a3b-af90-4b5d4b3d44dc" + "UKSOUTH:20230124T124612Z:f73e2947-8055-4ac7-a6bf-52d3716acb2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,10 +471,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:38:59 GMT" + "Tue, 24 Jan 2023 12:46:11 GMT" ], "Content-Length": [ - "722" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,19 +483,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "bea539df-eda6-4743-a5b0-e1ce20d810be" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -459,19 +510,19 @@ "no-cache" ], "x-ms-request-id": [ - "ee8cf2b1-d13b-4614-9b7f-66b2fe392d42" + "e0c35131-cba3-49d7-a520-fb6e77bbdedc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "1052967c-1f55-44c1-949d-4d2bae36864c" + "527e46b1-1e1b-470c-a732-c93e017ba8c0" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193901Z:1052967c-1f55-44c1-949d-4d2bae36864c" + "UKSOUTH:20230124T124712Z:527e46b1-1e1b-470c-a732-c93e017ba8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -480,10 +531,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:39:00 GMT" + "Tue, 24 Jan 2023 12:47:12 GMT" ], "Content-Length": [ - "722" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -492,16 +543,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "bea539df-eda6-4743-a5b0-e1ce20d810be" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -519,19 +570,19 @@ "no-cache" ], "x-ms-request-id": [ - "fcd84809-00d4-47d9-b6c8-2bc1965536fc" + "dc0d43cf-6bc7-4a8c-bdf1-2d639ae0ad73" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-correlation-request-id": [ - "815f1f2a-a929-440c-bf3e-6dc86400a006" + "259089b0-d42a-40bc-b36f-e46e10525ebf" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194003Z:815f1f2a-a929-440c-bf3e-6dc86400a006" + "UKSOUTH:20230124T124813Z:259089b0-d42a-40bc-b36f-e46e10525ebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,10 +591,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:40:02 GMT" + "Tue, 24 Jan 2023 12:48:13 GMT" ], "Content-Length": [ - "724" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,19 +603,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "497c5402-6395-4fcb-bc4b-9eec5d99be62" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -582,19 +630,19 @@ "no-cache" ], "x-ms-request-id": [ - "27a63f69-bd42-41f3-9acf-322f350b4d3e" + "df25a340-3e6d-4e3e-8f03-45d5e9415571" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-correlation-request-id": [ - "e2dc436d-a07f-40a1-8896-da088c54caec" + "f57cc20d-b0ea-40bf-b0fa-06562bca3c79" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194003Z:e2dc436d-a07f-40a1-8896-da088c54caec" + "UKSOUTH:20230124T124914Z:f57cc20d-b0ea-40bf-b0fa-06562bca3c79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,10 +651,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:40:03 GMT" + "Tue, 24 Jan 2023 12:49:13 GMT" ], "Content-Length": [ - "724" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -615,16 +663,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "497c5402-6395-4fcb-bc4b-9eec5d99be62" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -642,19 +690,19 @@ "no-cache" ], "x-ms-request-id": [ - "7b784dd0-6d8b-41c2-8076-111a7f24ad6e" + "6af3372b-a95a-4267-8b2e-37e5e2edcb16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-correlation-request-id": [ - "24b138c9-1b07-4380-8386-790f8e9df7a2" + "eba5be11-c765-4fed-9c03-49c47c6d6f00" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194105Z:24b138c9-1b07-4380-8386-790f8e9df7a2" + "UKSOUTH:20230124T125014Z:eba5be11-c765-4fed-9c03-49c47c6d6f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,10 +711,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:41:05 GMT" + "Tue, 24 Jan 2023 12:50:14 GMT" ], "Content-Length": [ - "752" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,19 +723,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "582fa244-9823-4fa2-9d0e-3e5cd0348cee" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -705,19 +750,19 @@ "no-cache" ], "x-ms-request-id": [ - "479629a9-b54e-4729-8b61-70435a182e04" + "061c19f4-6378-4b3b-9724-6b457fc9d1f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-correlation-request-id": [ - "f8fba01c-626b-4e5c-870c-f0a4e058ba61" + "86380f55-2f11-43b0-9354-f59724ab657e" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194105Z:f8fba01c-626b-4e5c-870c-f0a4e058ba61" + "UKSOUTH:20230124T125115Z:86380f55-2f11-43b0-9354-f59724ab657e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,10 +771,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:41:05 GMT" + "Tue, 24 Jan 2023 12:51:14 GMT" ], "Content-Length": [ - "752" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,19 +783,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3df87f0b-37c5-439e-ac06-f4820f948b9f" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -768,19 +810,19 @@ "no-cache" ], "x-ms-request-id": [ - "e754c074-4fd7-4430-b6ef-25f1242e9069" + "2cc818cd-72f3-420f-ab12-642ba32871a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-correlation-request-id": [ - "fe168255-93cb-4573-bb9d-1f102ccf8694" + "f62cc0cc-9b02-476f-83d7-e4e6da3a592a" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194106Z:fe168255-93cb-4573-bb9d-1f102ccf8694" + "UKSOUTH:20230124T125216Z:f62cc0cc-9b02-476f-83d7-e4e6da3a592a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,10 +831,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:41:06 GMT" + "Tue, 24 Jan 2023 12:52:15 GMT" ], "Content-Length": [ - "752" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,16 +843,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3df87f0b-37c5-439e-ac06-f4820f948b9f" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -828,19 +870,19 @@ "no-cache" ], "x-ms-request-id": [ - "18651cf1-314f-4d7f-ba02-ff62d6afe808" + "262b0af2-336a-4ac3-8166-ff55c25faead" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-correlation-request-id": [ - "105d9fa6-c3f2-4b9f-ab65-dca432a6e40d" + "80e4123d-09c8-45e5-9d30-c783068b858d" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194208Z:105d9fa6-c3f2-4b9f-ab65-dca432a6e40d" + "UKSOUTH:20230124T125316Z:80e4123d-09c8-45e5-9d30-c783068b858d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +891,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:42:07 GMT" + "Tue, 24 Jan 2023 12:53:16 GMT" ], "Content-Length": [ - "723" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,34 +903,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9e8871-809d-4771-9dd8-c095d7a15594" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "521" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -896,26 +929,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e814e4f4-4ed8-48e2-b09f-0b47e715d905?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "e814e4f4-4ed8-48e2-b09f-0b47e715d905" + "c9f0f00f-23b4-49ad-b733-d95386c0dead" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], "x-ms-correlation-request-id": [ - "060ea000-e392-4efd-8c38-ff30ae91480a" + "830ce12d-15e6-4692-aabe-542ce477b857" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193656Z:060ea000-e392-4efd-8c38-ff30ae91480a" + "UKSOUTH:20230124T125417Z:830ce12d-15e6-4692-aabe-542ce477b857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,10 +951,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:36:56 GMT" + "Tue, 24 Jan 2023 12:54:17 GMT" ], "Content-Length": [ - "647" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,34 +963,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "520" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -971,26 +989,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/4dbbb78f-fe59-4a94-bf13-a5d7947045ae?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "4dbbb78f-fe59-4a94-bf13-a5d7947045ae" + "7e3620f9-4a8b-41d6-a64b-be0e8fabffe6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-correlation-request-id": [ - "af89c6d0-99b6-4daa-89b7-916c9203043f" + "0282ca1c-6c50-457a-826d-dc767ec4a2ec" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193759Z:af89c6d0-99b6-4daa-89b7-916c9203043f" + "UKSOUTH:20230124T125518Z:0282ca1c-6c50-457a-826d-dc767ec4a2ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,10 +1011,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:37:58 GMT" + "Tue, 24 Jan 2023 12:55:17 GMT" ], "Content-Length": [ - "646" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1011,34 +1023,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "bea539df-eda6-4743-a5b0-e1ce20d810be" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "522" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1046,26 +1049,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/7169ea2b-539a-47d3-b092-6e84bbf347f8?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "7169ea2b-539a-47d3-b092-6e84bbf347f8" + "282124b5-82f5-4981-b6dd-741f37a4e6c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "x-ms-correlation-request-id": [ - "4bc113c7-679b-4f39-9658-690c358576e9" + "e88aba6a-695f-439c-9915-e03d921c2015" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193901Z:4bc113c7-679b-4f39-9658-690c358576e9" + "UKSOUTH:20230124T125618Z:e88aba6a-695f-439c-9915-e03d921c2015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,10 +1071,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:39:00 GMT" + "Tue, 24 Jan 2023 12:56:17 GMT" ], "Content-Length": [ - "648" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,34 +1083,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "497c5402-6395-4fcb-bc4b-9eec5d99be62" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "558" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1121,26 +1109,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/ac0b1856-64eb-40b7-aa6a-0400d28c7e62?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "ac0b1856-64eb-40b7-aa6a-0400d28c7e62" + "6a8c2ea8-8cb6-4cd6-8b7f-7ea248d257ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "x-ms-correlation-request-id": [ - "27ccb1b9-9b26-4e2e-8d62-6a0985411c8b" + "4b4d9a46-5bb8-48f9-acff-567e810712ff" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194004Z:27ccb1b9-9b26-4e2e-8d62-6a0985411c8b" + "UKSOUTH:20230124T125719Z:4b4d9a46-5bb8-48f9-acff-567e810712ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1149,10 +1131,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:40:03 GMT" + "Tue, 24 Jan 2023 12:57:19 GMT" ], "Content-Length": [ - "676" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1161,34 +1143,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3df87f0b-37c5-439e-ac06-f4820f948b9f" - ], - "Accept-Language": [ - "en-US" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "521" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1196,26 +1169,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/8665a2b8-f389-4d26-9548-1c48fd533f24?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "8665a2b8-f389-4d26-9548-1c48fd533f24" + "62caed4f-47a5-4e5d-9f2f-241bf246bddf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-correlation-request-id": [ - "faa31a55-5d15-46a2-b7fc-032cbb7d05f1" + "da323699-3b3f-4655-90e5-057dda2ddc7a" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194106Z:faa31a55-5d15-46a2-b7fc-032cbb7d05f1" + "UKSOUTH:20230124T125820Z:da323699-3b3f-4655-90e5-057dda2ddc7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,10 +1191,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:41:06 GMT" + "Tue, 24 Jan 2023 12:58:19 GMT" ], "Content-Length": [ - "647" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1236,14 +1203,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e814e4f4-4ed8-48e2-b09f-0b47e715d905?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9lODE0ZTRmNC00ZWQ4LTQ4ZTItYjA5Zi0wYjQ3ZTcxNWQ5MDU/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", @@ -1259,23 +1229,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "c756f815-17ea-49fc-944c-867c9aa7dd5a" + "f687218f-ef1b-44ae-b3f4-6ed6f137326d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "x-ms-correlation-request-id": [ - "d0be62f8-e451-4f3d-a2c2-db8d1c123537" + "d56420cd-fe57-4486-93ac-88c3886650bf" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193757Z:d0be62f8-e451-4f3d-a2c2-db8d1c123537" + "UKSOUTH:20230124T125920Z:d56420cd-fe57-4486-93ac-88c3886650bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,10 +1251,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:37:56 GMT" + "Tue, 24 Jan 2023 12:59:20 GMT" ], "Content-Length": [ - "107" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1296,16 +1263,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e814e4f4-4ed8-48e2-b09f-0b47e715d905\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:36:56.583Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/4dbbb78f-fe59-4a94-bf13-a5d7947045ae?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi80ZGJiYjc4Zi1mZTU5LTRhOTQtYmYxMy1hNWQ3OTQ3MDQ1YWU/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1bf61ff-ab7a-48dd-a21c-028221bbdfde" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -1322,23 +1289,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "9fa9cef1-30b9-4b95-ab29-9e7cade8115b" + "78b3033c-4cb2-47f1-83b6-b85ff664f757" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11979" ], "x-ms-correlation-request-id": [ - "df647f9c-8df2-4b96-b0a0-37908393bf61" + "d99dcfd4-50a7-42fd-8d45-b21edb85b1ec" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193859Z:df647f9c-8df2-4b96-b0a0-37908393bf61" + "UKSOUTH:20230124T130021Z:d99dcfd4-50a7-42fd-8d45-b21edb85b1ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,10 +1311,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:38:58 GMT" + "Tue, 24 Jan 2023 13:00:20 GMT" ], "Content-Length": [ - "107" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,16 +1323,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4dbbb78f-fe59-4a94-bf13-a5d7947045ae\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:37:58.887Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/7169ea2b-539a-47d3-b092-6e84bbf347f8?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi83MTY5ZWEyYi01MzlhLTQ3ZDMtYjA5Mi02ZTg0YmJmMzQ3Zjg/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "bea539df-eda6-4743-a5b0-e1ce20d810be" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -1385,23 +1349,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "bce6b539-32f5-4f5b-95ea-33f4ef28fefd" + "bd8c6b62-9fa5-48aa-85c3-5a8f114cb32e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11978" ], "x-ms-correlation-request-id": [ - "f7b54d0d-e6d9-4c71-a4db-56c5bbf5ff36" + "ed1b3e5d-34f4-4eaa-af99-45c41e5a4ef9" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194002Z:f7b54d0d-e6d9-4c71-a4db-56c5bbf5ff36" + "UKSOUTH:20230124T130121Z:ed1b3e5d-34f4-4eaa-af99-45c41e5a4ef9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,10 +1371,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:40:01 GMT" + "Tue, 24 Jan 2023 13:01:21 GMT" ], "Content-Length": [ - "106" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1422,16 +1383,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7169ea2b-539a-47d3-b092-6e84bbf347f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:39:01.64Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/ac0b1856-64eb-40b7-aa6a-0400d28c7e62?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9hYzBiMTg1Ni02NGViLTQwYjctYWE2YS0wNDAwZDI4YzdlNjI/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "497c5402-6395-4fcb-bc4b-9eec5d99be62" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -1448,23 +1409,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "cc2d3bff-195c-4622-97c9-d63993a612f1" + "cdce5059-e030-45fe-8332-95544c9aa881" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11977" ], "x-ms-correlation-request-id": [ - "16860ad6-4e61-48c7-879e-692f658f7d84" + "94f40909-63da-453d-a443-b308dab12e2e" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194104Z:16860ad6-4e61-48c7-879e-692f658f7d84" + "UKSOUTH:20230124T130222Z:94f40909-63da-453d-a443-b308dab12e2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,10 +1431,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:41:04 GMT" + "Tue, 24 Jan 2023 13:02:22 GMT" ], "Content-Length": [ - "107" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,16 +1443,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ac0b1856-64eb-40b7-aa6a-0400d28c7e62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:40:04.137Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/8665a2b8-f389-4d26-9548-1c48fd533f24?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi84NjY1YTJiOC1mMzg5LTRkMjYtOTU0OC0xYzQ4ZmQ1MzNmMjQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3df87f0b-37c5-439e-ac06-f4820f948b9f" + "1a88592f-9177-41a7-a66c-d1a2036c76ec" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -1511,23 +1469,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "7de00c49-29c8-47a6-aa9a-fa79dc79d875" + "d81a0165-dc1d-42ac-9ac8-f47088893236" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11976" ], "x-ms-correlation-request-id": [ - "02d643cf-b8ff-4e16-a82b-c3a9079f0cf7" + "183b79d6-d077-4183-ac61-d469c3e33f7a" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T194207Z:02d643cf-b8ff-4e16-a82b-c3a9079f0cf7" + "UKSOUTH:20230124T130323Z:183b79d6-d077-4183-ac61-d469c3e33f7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1491,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:42:07 GMT" + "Tue, 24 Jan 2023 13:03:22 GMT" ], "Content-Length": [ - "107" + "1166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,11 +1503,3136 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"8665a2b8-f389-4d26-9548-1c48fd533f24\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:41:06.543Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ec170cda-fc42-42b2-9cea-6ebf10070120" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "8407c050-7370-4d85-8312-8c20b8262764" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130424Z:8407c050-7370-4d85-8312-8c20b8262764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:04:23 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7f5be27-cd35-4770-930f-f8e1f89ee82b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "d9ac81d8-83d9-4301-92be-e72469b1c47d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130524Z:d9ac81d8-83d9-4301-92be-e72469b1c47d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:05:24 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1bb7e1f9-b317-4753-8b5b-65b778aa6444" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "31c4234f-b719-4d41-af8e-c0094001f910" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130625Z:31c4234f-b719-4d41-af8e-c0094001f910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:06:24 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37aa33b5-8684-413b-a6a0-e6866ee320b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "6b7ab08b-d4bd-44db-8cc3-a5aa9cbba79f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130725Z:6b7ab08b-d4bd-44db-8cc3-a5aa9cbba79f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:07:24 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f6d8997-8b4b-4aca-9a1f-ce05c1af5958" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "3672f033-d9dc-4514-9555-a6c01149abc1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130826Z:3672f033-d9dc-4514-9555-a6c01149abc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:08:26 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24b026a1-e5c5-4037-bb32-241fc397a25f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "5bb28d55-7f44-4389-85aa-e78019f4ad2b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T130927Z:5bb28d55-7f44-4389-85aa-e78019f4ad2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:09:26 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8567dcc-3de7-456c-9c51-0c40ee5822dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "52bf288b-a236-43fc-b1b7-5838c8d74b7b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131027Z:52bf288b-a236-43fc-b1b7-5838c8d74b7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:10:26 GMT" + ], + "Content-Length": [ + "1164" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"ps9183.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a88592f-9177-41a7-a66c-d1a2036c76ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "463" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"vCores\": 4,\r\n \"publicDataEndpointEnabled\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "89576f25-6a37-4e19-941b-64dd3e8114d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2fbbca00-8a1e-45f6-ac48-62ca1e5c3890" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T124008Z:2fbbca00-8a1e-45f6-ac48-62ca1e5c3890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 12:40:08 GMT" + ], + "Content-Length": [ + "691" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"SystemDefault\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183\",\r\n \"name\": \"ps9183\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5204718d-1473-46cc-802c-00bb8a035327" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4584b83a-b927-4547-9732-d2762f0ea6da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d419e90f-7ee7-44a6-8f83-40fa76db24ea" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131058Z:d419e90f-7ee7-44a6-8f83-40fa76db24ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:10:58 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd557e49-1cef-4b2e-8417-129bbb1f985f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2c562c2-dbe1-4cd8-ad1b-aafcec2b9eb0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "90fac1f1-adbd-4951-a4f9-c854a10819c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131059Z:90fac1f1-adbd-4951-a4f9-c854a10819c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:10:59 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf8d39fa-0efe-4cb4-b259-e08ba9246e7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "5c7bac0c-653d-4133-b232-31f24125affe" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131231Z:5c7bac0c-653d-4133-b232-31f24125affe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:12:30 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0cb3d54-a04b-4f04-a4fb-c9bb46fa8dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ba33f94-b9d5-498b-b4d1-e6c5d82fef3b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2f4dd059-7ad6-4ca1-9fe8-fe3d1f591ead" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131231Z:2f4dd059-7ad6-4ca1-9fe8-fe3d1f591ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:12:31 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0cb3d54-a04b-4f04-a4fb-c9bb46fa8dc4" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "718d5b77-ad36-4fdb-ba2b-3ea2dc269665" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "f74be389-745c-4df8-93f6-44d276a24e6a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131333Z:f74be389-745c-4df8-93f6-44d276a24e6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:13:33 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aded6d4e-09fa-4f58-a949-a220ecedcf1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ba00fb71-b71c-4ff1-8369-67c879c8ca31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "2e160200-875e-4159-8aba-edfa5456bbfc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131333Z:2e160200-875e-4159-8aba-edfa5456bbfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:13:33 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca951c73-9ead-4b16-adf3-4fb6802995fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a8d0ecf-968b-4510-bc28-639bc6022ddb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "6d10c313-0a29-406a-84d6-d5697f23fd6b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131334Z:6d10c313-0a29-406a-84d6-d5697f23fd6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:13:34 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca951c73-9ead-4b16-adf3-4fb6802995fd" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d45388bc-869f-405b-b763-f82a6e95bcfb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "42c3500a-eb03-435c-a3b8-883927b3a76e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131435Z:42c3500a-eb03-435c-a3b8-883927b3a76e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:14:35 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd7f098-dd00-4065-8087-40be84f842ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "121d3cba-21f2-4b1d-9593-2f8756e726d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "b3975d46-82be-4bc5-9d3c-c9235f19f6c0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131436Z:b3975d46-82be-4bc5-9d3c-c9235f19f6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:14:35 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd7f098-dd00-4065-8087-40be84f842ad" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "718c0640-2e78-4e99-9354-9108f4cbde9e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "bd22a3ca-7747-464a-98a2-792cdc275cde" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131537Z:bd22a3ca-7747-464a-98a2-792cdc275cde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:15:36 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75dbedb9-634a-41dc-858c-85edf8dac884" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "81d0c468-fc57-490a-a6f4-4b416a58591a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "628ecceb-3958-4166-b88b-5974570301f0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131537Z:628ecceb-3958-4166-b88b-5974570301f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:15:36 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7065c200-dd85-4314-8fa5-a764f88f7f46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab8ef0e6-164c-47a7-bda5-b8d4c6f90221" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "c0363920-2ccb-4dd3-80ec-e332ed1cc3a8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131538Z:c0363920-2ccb-4dd3-80ec-e332ed1cc3a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:15:37 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7065c200-dd85-4314-8fa5-a764f88f7f46" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "853e0daa-a161-4703-aa37-6c92f1041ccd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "82de322a-02a9-4ccd-adc6-467ac1d4aaea" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131639Z:82de322a-02a9-4ccd-adc6-467ac1d4aaea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:16:39 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnisnrs875teuv.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16672592-d35b-4478-9dee-fecdf3144d01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/4f967dc6-5190-49b7-9509-52abfca01b09?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "4f967dc6-5190-49b7-9509-52abfca01b09" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "70f0657e-4803-4b57-a111-6777913a533e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131059Z:70f0657e-4803-4b57-a111-6777913a533e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:10:59 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0cb3d54-a04b-4f04-a4fb-c9bb46fa8dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/944eaba3-aff6-484f-bee0-e48648e6e014?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "944eaba3-aff6-484f-bee0-e48648e6e014" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a8e89f6b-f4c9-431a-9739-8e3ee9e08c8b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131232Z:a8e89f6b-f4c9-431a-9739-8e3ee9e08c8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:12:31 GMT" + ], + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca951c73-9ead-4b16-adf3-4fb6802995fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/ba7fdb30-2603-450b-a3a5-607d7c4a53c3?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "ba7fdb30-2603-450b-a3a5-607d7c4a53c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1e48221b-1734-4ec9-9ddb-7440dd1cd472" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131334Z:1e48221b-1734-4ec9-9ddb-7440dd1cd472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:13:34 GMT" + ], + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": false,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd7f098-dd00-4065-8087-40be84f842ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "559" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/a464fc13-e9ab-4262-ae49-4664ba6a3c90?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "a464fc13-e9ab-4262-ae49-4664ba6a3c90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "81373e53-9609-4dc3-9f77-45dc10cb71d5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131436Z:81373e53-9609-4dc3-9f77-45dc10cb71d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:14:36 GMT" + ], + "Content-Length": [ + "646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": false,\r\n \"allowOutboundEnabled\": false,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": false,\r\n \"xaTransactionsDefaultTimeout\": 1000,\r\n \"xaTransactionsMaximumTimeout\": 2000\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\",\r\n \"newSuffix.test.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzOTE4My9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7065c200-dd85-4314-8fa5-a764f88f7f46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/9a21a35b-6a41-4c91-9e28-8e3cab053cf3?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "9a21a35b-6a41-4c91-9e28-8e3cab053cf3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1fd5ddc6-467e-44e7-a198-637a0c426f0a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131538Z:1fd5ddc6-467e-44e7-a198-637a0c426f0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:15:37 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/managedInstances/ps9183/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/4f967dc6-5190-49b7-9509-52abfca01b09?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzRmOTY3ZGM2LTUxOTAtNDliNy05NTA5LTUyYWJmY2EwMWIwOT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b5d8bc69-9e38-4df9-a899-c7842bbe93f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "73b62e35-4368-417c-bd76-ad99a337cba2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131200Z:73b62e35-4368-417c-bd76-ad99a337cba2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:11:59 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4f967dc6-5190-49b7-9509-52abfca01b09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-01-24T13:10:59.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/4f967dc6-5190-49b7-9509-52abfca01b09?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzRmOTY3ZGM2LTUxOTAtNDliNy05NTA5LTUyYWJmY2EwMWIwOT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1243eed5-98ed-4439-87b5-886e4213c405" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "b4b565dc-90de-4b02-ab8a-4ad753e2278d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131215Z:b4b565dc-90de-4b02-ab8a-4ad753e2278d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:12:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4f967dc6-5190-49b7-9509-52abfca01b09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-01-24T13:10:59.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/4f967dc6-5190-49b7-9509-52abfca01b09?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzRmOTY3ZGM2LTUxOTAtNDliNy05NTA5LTUyYWJmY2EwMWIwOT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4a3be8b7-1525-4693-9b45-4ab906390f52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b375459e-aaab-4be0-bdba-35e3faaac205" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131230Z:b375459e-aaab-4be0-bdba-35e3faaac205" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:12:30 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4f967dc6-5190-49b7-9509-52abfca01b09\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T13:10:59.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/944eaba3-aff6-484f-bee0-e48648e6e014?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzk0NGVhYmEzLWFmZjYtNDg0Zi1iZWUwLWU0ODY0OGU2ZTAxND9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0cb3d54-a04b-4f04-a4fb-c9bb46fa8dc4" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "def82f3d-0e46-45c5-99ec-cbc9156a51fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "ad89940a-c0c9-4d8a-b605-3274c2c22881" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131332Z:ad89940a-c0c9-4d8a-b605-3274c2c22881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:13:32 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"944eaba3-aff6-484f-bee0-e48648e6e014\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T13:12:32.273Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/ba7fdb30-2603-450b-a3a5-607d7c4a53c3?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uL2JhN2ZkYjMwLTI2MDMtNDUwYi1hM2E1LTYwN2Q3YzRhNTNjMz9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca951c73-9ead-4b16-adf3-4fb6802995fd" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cbe6c4d4-0fb6-49eb-98c3-f035aed3450a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "9f87238b-c11c-4001-aba5-d58195d6effb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131434Z:9f87238b-c11c-4001-aba5-d58195d6effb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:14:34 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ba7fdb30-2603-450b-a3a5-607d7c4a53c3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T13:13:34.677Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/a464fc13-e9ab-4262-ae49-4664ba6a3c90?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uL2E0NjRmYzEzLWU5YWItNDI2Mi1hZTQ5LTQ2NjRiYTZhM2M5MD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd7f098-dd00-4065-8087-40be84f842ad" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "66c5300a-6ec2-4ae7-98f7-30d29bcf12e2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "3c267c00-eb98-4f4c-b115-57882e5c9b1e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131536Z:3c267c00-eb98-4f4c-b115-57882e5c9b1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:15:35 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a464fc13-e9ab-4262-ae49-4664ba6a3c90\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T13:14:36.513Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps2851/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/9a21a35b-6a41-4c91-9e28-8e3cab053cf3?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzMjg1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzlhMjFhMzViLTZhNDEtNGM5MS05ZTI4LThlM2NhYjA1M2NmMz9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7065c200-dd85-4314-8fa5-a764f88f7f46" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "58781c6d-f5b1-49ea-899a-15e42fabb5a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "8491cca9-a577-4872-b4f5-5f08dfda4f3b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131639Z:8491cca9-a577-4872-b4f5-5f08dfda4f3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:16:38 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"9a21a35b-6a41-4c91-9e28-8e3cab053cf3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T13:15:38.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourcegroups/ps2851?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlZ3JvdXBzL3BzMjg1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6288267c-e7eb-4b76-999d-b9f1729e533d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "b2535a6a-eddd-4bd2-b317-46a6c8462ff5" + ], + "x-ms-correlation-request-id": [ + "b2535a6a-eddd-4bd2-b317-46a6c8462ff5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131643Z:b2535a6a-eddd-4bd2-b317-46a6c8462ff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:16:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "83fe0624-a481-443c-8163-89d43715cf02" + ], + "x-ms-correlation-request-id": [ + "83fe0624-a481-443c-8163-89d43715cf02" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131659Z:83fe0624-a481-443c-8163-89d43715cf02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:16:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "88df5f9b-390a-433b-b83d-226971044fd9" + ], + "x-ms-correlation-request-id": [ + "88df5f9b-390a-433b-b83d-226971044fd9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131714Z:88df5f9b-390a-433b-b83d-226971044fd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:17:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d6c2c489-ee9a-4aec-adfc-1075891ce91b" + ], + "x-ms-correlation-request-id": [ + "d6c2c489-ee9a-4aec-adfc-1075891ce91b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131729Z:d6c2c489-ee9a-4aec-adfc-1075891ce91b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:17:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "989955f3-6026-48e7-beed-c476161f2c4a" + ], + "x-ms-correlation-request-id": [ + "989955f3-6026-48e7-beed-c476161f2c4a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131745Z:989955f3-6026-48e7-beed-c476161f2c4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:17:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "5e937c3a-5ecb-48cf-9791-9d7ac6cbc229" + ], + "x-ms-correlation-request-id": [ + "5e937c3a-5ecb-48cf-9791-9d7ac6cbc229" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131800Z:5e937c3a-5ecb-48cf-9791-9d7ac6cbc229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:18:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "31eca51c-24cb-4fb6-af46-5dfa1b4b24a3" + ], + "x-ms-correlation-request-id": [ + "31eca51c-24cb-4fb6-af46-5dfa1b4b24a3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131815Z:31eca51c-24cb-4fb6-af46-5dfa1b4b24a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:18:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "b66aeca4-c363-4d64-92f5-478189ec0a0a" + ], + "x-ms-correlation-request-id": [ + "b66aeca4-c363-4d64-92f5-478189ec0a0a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131831Z:b66aeca4-c363-4d64-92f5-478189ec0a0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:18:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c5e2c14b-28a1-46d0-81be-f145c3b34340" + ], + "x-ms-correlation-request-id": [ + "c5e2c14b-28a1-46d0-81be-f145c3b34340" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131846Z:c5e2c14b-28a1-46d0-81be-f145c3b34340" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:18:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "07f8b603-a194-45ff-bd02-c2a07d8c6a22" + ], + "x-ms-correlation-request-id": [ + "07f8b603-a194-45ff-bd02-c2a07d8c6a22" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131901Z:07f8b603-a194-45ff-bd02-c2a07d8c6a22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:19:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "27176a37-0cda-4558-9144-a483dd678901" + ], + "x-ms-correlation-request-id": [ + "27176a37-0cda-4558-9144-a483dd678901" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131917Z:27176a37-0cda-4558-9144-a483dd678901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:19:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "f8d0c811-5cd7-45d6-9eb1-157dd1dbe456" + ], + "x-ms-correlation-request-id": [ + "f8d0c811-5cd7-45d6-9eb1-157dd1dbe456" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131932Z:f8d0c811-5cd7-45d6-9eb1-157dd1dbe456" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:19:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "385fb5ba-8de7-4697-8f4a-e15912ef6182" + ], + "x-ms-correlation-request-id": [ + "385fb5ba-8de7-4697-8f4a-e15912ef6182" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T131947Z:385fb5ba-8de7-4697-8f4a-e15912ef6182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:19:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "6215f859-4315-43b8-b83e-48bebc70ba91" + ], + "x-ms-correlation-request-id": [ + "6215f859-4315-43b8-b83e-48bebc70ba91" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T132002Z:6215f859-4315-43b8-b83e-48bebc70ba91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:20:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "b9f51801-0992-4e30-82ab-08af1caaacee" + ], + "x-ms-correlation-request-id": [ + "b9f51801-0992-4e30-82ab-08af1caaacee" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T132018Z:b9f51801-0992-4e30-82ab-08af1caaacee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:20:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "84c2a4e6-6869-4431-bff9-eaddb59db774" + ], + "x-ms-correlation-request-id": [ + "84c2a4e6-6869-4431-bff9-eaddb59db774" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T132033Z:84c2a4e6-6869-4431-bff9-eaddb59db774" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:20:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "65a9502b-9fde-4c2d-8721-e1ba4187d4d1" + ], + "x-ms-correlation-request-id": [ + "65a9502b-9fde-4c2d-8721-e1ba4187d4d1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T132048Z:65a9502b-9fde-4c2d-8721-e1ba4187d4d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:20:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE5URXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "f80d07bb-67d8-42fc-94ce-e7461c8cb79f" + ], + "x-ms-correlation-request-id": [ + "f80d07bb-67d8-42fc-94ce-e7461c8cb79f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T132049Z:f80d07bb-67d8-42fc-94ce-e7461c8cb79f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:20:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", "StatusCode": 200 } ], - "Names": {}, + "Names": { + "Test-ManagedInstanceDtcGetAndSetScenarios": [ + "ps2851", + "ps9183" + ] + }, "Variables": { "SubscriptionId": "8313371e-0879-428e-b1da-6353575a9192" } diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json index 5405c37504a1..4276e884a610 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceDtcScenarioTests/TestManagedInstanceDtcPipingScenarios.json @@ -1,12 +1,78 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2?api-version=2021-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjI/YXBpLXZlcnNpb249MjAyMS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourcegroups/ps4129?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlZ3JvdXBzL3BzNDEyOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dd16808-1d58-41bd-836d-4f9e7a3e2b3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3fcc6ff0-f206-4ef7-ab5c-115d3f2c9567" + ], + "x-ms-correlation-request-id": [ + "3fcc6ff0-f206-4ef7-ab5c-115d3f2c9567" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T133651Z:3fcc6ff0-f206-4ef7-ab5c-115d3f2c9567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:36:50 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129\",\r\n \"name\": \"ps4129\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "9d809258-d279-454e-a17b-56417a7b16d1" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "Accept-Language": [ "en-US" @@ -19,6 +85,63 @@ ] }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "13bcf4bb-1602-419c-b72f-8d970483623f" + ], + "x-ms-correlation-request-id": [ + "13bcf4bb-1602-419c-b72f-8d970483623f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T133651Z:13bcf4bb-1602-419c-b72f-8d970483623f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:36:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps8957' under resource group 'ps4129' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,19 +150,19 @@ "no-cache" ], "x-ms-request-id": [ - "edff5b88-850c-4d3d-8772-73ec3e815b7d" + "12a58fc2-8bc2-4cc2-9b1f-b64116ed995e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "e3c27358-51ec-41b5-af5f-714da45b471b" + "cd608ae6-c932-4fe9-8669-024eec585f2d" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193207Z:e3c27358-51ec-41b5-af5f-714da45b471b" + "UKSOUTH:20230124T133757Z:cd608ae6-c932-4fe9-8669-024eec585f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +171,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:32:06 GMT" + "Tue, 24 Jan 2023 13:37:57 GMT" ], "Content-Length": [ - "1393" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,19 +183,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"identity\": {\r\n \"principalId\": \"7e5a0d1e-02b9-4cd1-a011-fcaf39540a5d\",\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"skrivokapic-paasv2.f1d03b4768ef.database.windows.net\",\r\n \"administratorLogin\": \"krivi\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-skrivokapic-multiaz-paasv2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"f1d03b4768ef\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"currentBackupStorageRedundancy\": \"Zone\",\r\n \"requestedBackupStorageRedundancy\": \"Zone\",\r\n \"zoneRedundant\": true\r\n },\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2\",\r\n \"name\": \"skrivokapic-paasv2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b923cf0b-e79c-44c8-bee2-dca95293ba1d" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -90,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "9191fbf0-1b71-4a2b-94b3-6ced164d6683" + "d6d798fc-02ab-4d38-b3a1-d3769aa5958b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "0153e31a-e267-423c-b991-4329c246b98f" + "2cbc682a-8aec-4313-9a85-88d71c579785" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193208Z:0153e31a-e267-423c-b991-4329c246b98f" + "UKSOUTH:20230124T133858Z:2cbc682a-8aec-4313-9a85-88d71c579785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +231,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:32:08 GMT" + "Tue, 24 Jan 2023 13:38:58 GMT" ], "Content-Length": [ - "723" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,19 +243,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ccba8128-0474-47e7-a278-03df4217677e" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -153,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "3dc055e9-e45b-4d64-9525-ceda8f841f3c" + "a727d674-8bfd-49cc-b936-83147788bf20" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "c1682f0d-a387-47df-aa8d-028a2e938f42" + "e31c58bd-5235-41c7-9cf9-2629c8c19cec" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193208Z:c1682f0d-a387-47df-aa8d-028a2e938f42" + "UKSOUTH:20230124T133959Z:e31c58bd-5235-41c7-9cf9-2629c8c19cec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +291,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:32:08 GMT" + "Tue, 24 Jan 2023 13:39:58 GMT" ], "Content-Length": [ - "723" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,16 +303,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ccba8128-0474-47e7-a278-03df4217677e" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -213,19 +330,19 @@ "no-cache" ], "x-ms-request-id": [ - "b8066957-420b-47f8-b5f0-864930e36ad9" + "5ac59b0b-94fc-4e8f-bbf7-91698e7bb00d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "fad6abac-ef76-4da5-9f0d-71aba0752db1" + "725a023a-741d-46c3-b27c-229a338780a0" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193311Z:fad6abac-ef76-4da5-9f0d-71aba0752db1" + "UKSOUTH:20230124T134059Z:725a023a-741d-46c3-b27c-229a338780a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,10 +351,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:33:11 GMT" + "Tue, 24 Jan 2023 13:40:59 GMT" ], "Content-Length": [ - "722" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,19 +363,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7ccac6b3-916c-4012-af91-2c5ad3d7c1c7" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -276,19 +390,19 @@ "no-cache" ], "x-ms-request-id": [ - "4db747d0-c5c2-4cc4-8971-2adb4ce90215" + "68ffbdd8-e9d8-4c08-8d2a-f4cf16cabe74" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-correlation-request-id": [ - "d8892ce5-cf0e-49d7-9d9c-24422448288e" + "e6774876-6e68-4518-82a2-516169c3adc9" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193311Z:d8892ce5-cf0e-49d7-9d9c-24422448288e" + "UKSOUTH:20230124T134200Z:e6774876-6e68-4518-82a2-516169c3adc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +411,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:33:11 GMT" + "Tue, 24 Jan 2023 13:41:59 GMT" ], "Content-Length": [ - "722" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,19 +423,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -339,19 +450,19 @@ "no-cache" ], "x-ms-request-id": [ - "a87b4872-2c08-4fe1-a5dd-321c2d5944f5" + "21e01a16-5e36-43de-97ca-06526dd02eae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-correlation-request-id": [ - "48f2eb33-eb0d-42f6-8ac9-7cd8b33e617a" + "c812f604-9961-47be-a1b1-2a8b6a8473f7" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193312Z:48f2eb33-eb0d-42f6-8ac9-7cd8b33e617a" + "UKSOUTH:20230124T134301Z:c812f604-9961-47be-a1b1-2a8b6a8473f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -360,10 +471,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:33:12 GMT" + "Tue, 24 Jan 2023 13:43:00 GMT" ], "Content-Length": [ - "722" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -372,16 +483,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -399,19 +510,19 @@ "no-cache" ], "x-ms-request-id": [ - "56254c24-1d92-4ea3-9539-8046a3f268c4" + "82555ce5-6d11-4573-bb90-51499e86dec0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "009ef635-1555-4aad-8c1f-7d9bc157da34" + "4c924c5a-50b0-4bc2-886e-3162b3404741" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193414Z:009ef635-1555-4aad-8c1f-7d9bc157da34" + "UKSOUTH:20230124T134401Z:4c924c5a-50b0-4bc2-886e-3162b3404741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,10 +531,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:34:14 GMT" + "Tue, 24 Jan 2023 13:44:01 GMT" ], "Content-Length": [ - "723" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,19 +543,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95a79dc9-f858-4f77-9e3b-76f162d713d8" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -462,19 +570,19 @@ "no-cache" ], "x-ms-request-id": [ - "55a630b9-737c-44cc-97bc-5d721360152c" + "f38e315d-fd68-46e9-91dd-9bb67a85b3f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "ce2cc0cc-5fb3-4967-8fd9-bdab463b2808" + "dbd8ea0e-d448-4c60-862b-db9710ec480e" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193414Z:ce2cc0cc-5fb3-4967-8fd9-bdab463b2808" + "UKSOUTH:20230124T134502Z:dbd8ea0e-d448-4c60-862b-db9710ec480e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +591,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:34:14 GMT" + "Tue, 24 Jan 2023 13:45:01 GMT" ], "Content-Length": [ - "723" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,16 +603,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95a79dc9-f858-4f77-9e3b-76f162d713d8" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -522,7 +630,7 @@ "no-cache" ], "x-ms-request-id": [ - "76ba3733-87f0-45ca-84de-a85de702041e" + "58e13b3a-3835-4efb-909e-5b77d2f6f3e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -531,10 +639,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "4474dbc4-47b1-4110-b762-7e67108ece45" + "743cdf1e-e4c4-4027-852d-8465db82ee37" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193516Z:4474dbc4-47b1-4110-b762-7e67108ece45" + "UKSOUTH:20230124T134602Z:743cdf1e-e4c4-4027-852d-8465db82ee37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -543,10 +651,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:35:16 GMT" + "Tue, 24 Jan 2023 13:46:02 GMT" ], "Content-Length": [ - "722" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,34 +663,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnmvkvk7etugue.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ccba8128-0474-47e7-a278-03df4217677e" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "520" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -590,26 +689,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e12b6963-e69f-4c94-ae62-c6c5b8efd79b?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "e12b6963-e69f-4c94-ae62-c6c5b8efd79b" + "d0f82af9-b1db-43fe-8ffd-99210a93fb36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "x-ms-correlation-request-id": [ - "377ba7fb-c47b-4de2-80b8-aa6934ca43c2" + "b49a8f89-ef3d-40ee-a370-bcfec0331683" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193209Z:377ba7fb-c47b-4de2-80b8-aa6934ca43c2" + "UKSOUTH:20230124T134703Z:b49a8f89-ef3d-40ee-a370-bcfec0331683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +711,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:32:09 GMT" + "Tue, 24 Jan 2023 13:47:03 GMT" ], "Content-Length": [ - "646" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,34 +723,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "521" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -665,26 +749,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/40c77a6e-fb7e-44e6-b949-25a73a1fe1b7?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "40c77a6e-fb7e-44e6-b949-25a73a1fe1b7" + "7e84740f-b223-4351-805b-927f367067f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-correlation-request-id": [ - "5ecb0067-60a7-43df-8a00-3cc18d0308ef" + "1cdca038-89be-473b-b8cb-49e7ee4fec1c" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193312Z:5ecb0067-60a7-43df-8a00-3cc18d0308ef" + "UKSOUTH:20230124T134804Z:1cdca038-89be-473b-b8cb-49e7ee4fec1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,10 +771,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:33:12 GMT" + "Tue, 24 Jan 2023 13:48:04 GMT" ], "Content-Length": [ - "647" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,34 +783,85 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9za3Jpdm9rYXBpYy1wYWFzdjIvZHRjL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95a79dc9-f858-4f77-9e3b-76f162d713d8" - ], - "Accept-Language": [ - "en-US" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763", "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c9f9b66a-5398-4e8d-8fac-3582a2e08598" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "84a89fb5-1574-4d06-9048-0c5cfa46e16c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T134904Z:84a89fb5-1574-4d06-9048-0c5cfa46e16c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:49:04 GMT" + ], + "Content-Length": [ + "1071" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "520" + "Expires": [ + "-1" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -740,26 +869,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/811ef340-9ed0-4bcd-a3d3-2654946cb549?api-version=2022-05-01-preview" - ], "x-ms-request-id": [ - "811ef340-9ed0-4bcd-a3d3-2654946cb549" + "a7f9ca92-0e4c-451f-a62b-cb0eff45b978" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], "x-ms-correlation-request-id": [ - "029f53f6-06e4-4c2d-b714-09fcd7eec74e" + "2085543b-9c7d-4d83-965a-e715a49a993b" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193415Z:029f53f6-06e4-4c2d-b714-09fcd7eec74e" + "UKSOUTH:20230124T135007Z:2085543b-9c7d-4d83-965a-e715a49a993b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,10 +891,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:34:15 GMT" + "Tue, 24 Jan 2023 13:50:06 GMT" ], "Content-Length": [ - "646" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,16 +903,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/managedInstances/skrivokapic-paasv2/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/e12b6963-e69f-4c94-ae62-c6c5b8efd79b?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi9lMTJiNjk2My1lNjlmLTRjOTQtYWU2Mi1jNmM1YjhlZmQ3OWI/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ccba8128-0474-47e7-a278-03df4217677e" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -806,23 +929,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "0c9caf3b-aae1-44f1-b90b-fb3a02d97779" + "e721f768-6f7b-4a2f-971c-a95b8976bcda" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-correlation-request-id": [ - "a42ce3bd-1241-4aa1-a920-0a19d4573a1f" + "72519b35-7c31-434d-9e1e-2d2b0e7a3187" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193310Z:a42ce3bd-1241-4aa1-a920-0a19d4573a1f" + "UKSOUTH:20230124T135107Z:72519b35-7c31-434d-9e1e-2d2b0e7a3187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,10 +951,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:33:10 GMT" + "Tue, 24 Jan 2023 13:51:07 GMT" ], "Content-Length": [ - "107" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,16 +963,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e12b6963-e69f-4c94-ae62-c6c5b8efd79b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:32:09.587Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/40c77a6e-fb7e-44e6-b949-25a73a1fe1b7?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi80MGM3N2E2ZS1mYjdlLTQ0ZTYtYjk0OS0yNWE3M2ExZmUxYjc/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0ad56deb-9bd1-41d3-82b4-b1b682c3ed1f" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -869,23 +989,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "4d1e7c90-b3e7-4b23-9ed9-22fa8464644e" + "f8a360d4-180b-4aa8-9eb6-e4ce8faa561e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11983" ], "x-ms-correlation-request-id": [ - "24b2169c-8ec4-41c6-b31a-94d47c3210a6" + "3cb8f9ef-4b42-4ccc-9a83-7814b59a7bd2" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193413Z:24b2169c-8ec4-41c6-b31a-94d47c3210a6" + "UKSOUTH:20230124T135208Z:3cb8f9ef-4b42-4ccc-9a83-7814b59a7bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,10 +1011,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:34:13 GMT" + "Tue, 24 Jan 2023 13:52:07 GMT" ], "Content-Length": [ - "107" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -906,16 +1023,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"40c77a6e-fb7e-44e6-b949-25a73a1fe1b7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:33:12.687Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Sql/locations/southafricanorth/managedInstanceDtcAzureAsyncOperation/811ef340-9ed0-4bcd-a3d3-2654946cb549?api-version=2022-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL0N1c3RvbWVyRXhwZXJpZW5jZVRlYW1fUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoYWZyaWNhbm9ydGgvbWFuYWdlZEluc3RhbmNlRHRjQXp1cmVBc3luY09wZXJhdGlvbi84MTFlZjM0MC05ZWQwLTRiY2QtYTNkMy0yNjU0OTQ2Y2I1NDk/YXBpLXZlcnNpb249MjAyMi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95a79dc9-f858-4f77-9e3b-76f162d713d8" + "2e8ac348-5916-4db2-941b-0919b9197fd3" ], "User-Agent": [ "FxVersion/4.700.22.55902", @@ -932,23 +1049,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "ee3b9278-86af-42c1-92c8-da9e1dc59ae5" + "0c01d58c-8b83-4338-a8cd-55e6f0cdd586" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-correlation-request-id": [ - "119f5f5c-4cfe-43f5-a90f-bb5e89d0ed63" + "1acebd69-d9c4-498e-8a49-3add1a9840c3" ], "x-ms-routing-request-id": [ - "UKSOUTH:20230123T193515Z:119f5f5c-4cfe-43f5-a90f-bb5e89d0ed63" + "UKSOUTH:20230124T135308Z:1acebd69-d9c4-498e-8a49-3add1a9840c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,10 +1071,10 @@ "nosniff" ], "Date": [ - "Mon, 23 Jan 2023 19:35:15 GMT" + "Tue, 24 Jan 2023 13:53:08 GMT" ], "Content-Length": [ - "106" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -969,11 +1083,3946 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"811ef340-9ed0-4bcd-a3d3-2654946cb549\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-23T19:34:15.34Z\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e64d7301-0b0d-464f-bc47-b2601218105c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "e8fddc9b-7c13-448e-ac50-029553721f8f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135409Z:e8fddc9b-7c13-448e-ac50-029553721f8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:54:09 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b867e521-58f7-43a3-8c37-9de519e2bfe7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "faa175fc-796c-4693-9e8a-7282142357a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135510Z:faa175fc-796c-4693-9e8a-7282142357a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:55:09 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6c260e58-dd38-4106-a194-5a092506e0a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "6facb36e-f29c-478e-b11d-3050b6316114" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135610Z:6facb36e-f29c-478e-b11d-3050b6316114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:56:10 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1bea3af6-9ddd-4572-b757-90baaf1d722e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "04620bfb-4221-4032-a361-35ecd06ca10d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135711Z:04620bfb-4221-4032-a361-35ecd06ca10d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:57:11 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48ec7ea3-099b-4ebc-be93-00cfec7d19f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "9ba43939-11e4-4315-b3a7-a027fd1d52ce" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135812Z:9ba43939-11e4-4315-b3a7-a027fd1d52ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:58:12 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd83a563-f910-40f0-9815-1ac1f88fd8bd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "761d0dd7-2079-4eee-90f5-e53b5cdc0a14" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T135912Z:761d0dd7-2079-4eee-90f5-e53b5cdc0a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:59:12 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "625fe6c8-f1e5-4ec4-939f-fc54ab08b3a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "af42d36e-5a28-4442-b34d-1e407f56854f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140013Z:af42d36e-5a28-4442-b34d-1e407f56854f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:00:13 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a555447-d35b-4fcc-a63b-1e092cf4cfa9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "f1dc4b11-8528-4694-bc5c-622f039077b4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140114Z:f1dc4b11-8528-4694-bc5c-622f039077b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:01:14 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc357d74-6334-4e55-939e-0a602911f65e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "874ca65f-60b9-41f3-9662-2c55eb17491e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140215Z:874ca65f-60b9-41f3-9662-2c55eb17491e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:02:14 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9bf67bed-fc6c-47e8-bd77-d44fb5e1b2e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "784c66eb-35d4-42d6-909b-a274dc95e7d1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140315Z:784c66eb-35d4-42d6-909b-a274dc95e7d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:03:15 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca28cd6b-2a8e-4d75-b916-e8cfab0236ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "f1ef2c2a-9117-4d70-b279-01870fd5f142" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140416Z:f1ef2c2a-9117-4d70-b279-01870fd5f142" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:04:15 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "46bf5070-67d3-4810-bcae-aeb641e67e62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "4c94c352-df88-4bd2-a852-fbccc14eb629" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140516Z:4c94c352-df88-4bd2-a852-fbccc14eb629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:05:15 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96a76358-4469-4044-a9d1-ce27f86e0397" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "a6d3430a-faae-449b-9e57-d4b2518feaf3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140617Z:a6d3430a-faae-449b-9e57-d4b2518feaf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:06:16 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0708634d-8c44-4bff-b8c8-4ee71a9b218a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "2f0f0cb5-37d7-459b-b868-25cb8278071b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140717Z:2f0f0cb5-37d7-459b-b868-25cb8278071b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:07:17 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1258efac-e8e8-430c-a590-2760d399ec8f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "f1f9bbb0-2286-425c-8c30-8089597c257d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140818Z:f1f9bbb0-2286-425c-8c30-8089597c257d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:08:17 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "149f5bec-6c50-42e2-98de-b5d9a463778a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "153a120b-acaf-471a-b661-36dfb23e98cb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T140919Z:153a120b-acaf-471a-b661-36dfb23e98cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:09:18 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43e03990-c984-49e5-b6d3-b153a24b11b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "41521c6c-7885-426a-b737-307cdf7a90c3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141019Z:41521c6c-7885-426a-b737-307cdf7a90c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:10:19 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d12f1b6d-4628-43c9-95da-4c22bdcb7035" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "183ded99-0b76-469a-a1a5-d10dead75cbc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141120Z:183ded99-0b76-469a-a1a5-d10dead75cbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:11:19 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e325739e-f436-47c3-ae79-625ebbf7ff4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "7739d9f3-4dca-4424-bb07-52a9bae1b50c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141221Z:7739d9f3-4dca-4424-bb07-52a9bae1b50c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:12:20 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30533400-de46-4f90-add3-dfad47230bf0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "28705521-ca4b-4d5a-8497-227a041c6328" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141321Z:28705521-ca4b-4d5a-8497-227a041c6328" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:13:21 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e0a7014-e073-40ba-bdae-3995ddad5e34" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "5a4f311c-75e1-40fc-a20b-22b3f3618b1d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141422Z:5a4f311c-75e1-40fc-a20b-22b3f3618b1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:14:21 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "833796a4-c3f2-4333-ad7d-7b3748262a78" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "46f9a808-a821-4719-aedc-9a87a13fa20d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141522Z:46f9a808-a821-4719-aedc-9a87a13fa20d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:15:21 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4abb942a-901c-4bb3-a3bd-cc89bcc76aa1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "4b7198ee-2ba0-4004-83cf-164d9a92b891" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141623Z:4b7198ee-2ba0-4004-83cf-164d9a92b891" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:16:22 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fae17cb-ae11-4943-89c3-7389436fb051" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "e44cb390-ab58-4ee8-951c-3ed908ad6350" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141723Z:e44cb390-ab58-4ee8-951c-3ed908ad6350" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:17:23 GMT" + ], + "Content-Length": [ + "1071" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "799409b4-8c09-4042-96cd-4889bc227ff2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "28bef59d-4994-44b3-b0ac-a203a287c857" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141824Z:28bef59d-4994-44b3-b0ac-a203a287c857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:18:24 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps8957.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4b3e465b-1fd7-4505-a7c1-4c9e70d094a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "7056866c-afaa-40ac-92b0-7c862d7b868d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T141925Z:7056866c-afaa-40ac-92b0-7c862d7b868d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:19:25 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps8957.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41263263-1821-4fb9-b0e1-43fd4eba1321" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "27363a87-b060-41e0-a68e-15fb3d76b652" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142026Z:27363a87-b060-41e0-a68e-15fb3d76b652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:20:26 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps8957.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d176d425-547e-456f-99e8-2985006e6942" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "c9c0ebde-beb8-4ba6-a887-238165206e0c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142126Z:c9c0ebde-beb8-4ba6-a887-238165206e0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:21:26 GMT" + ], + "Content-Length": [ + "1166" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"fullyQualifiedDomainName\": \"ps8957.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Creating\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b65a636d-0e6a-426b-8161-1d1b8e002cbc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "78bdcef0-7c30-41b1-964b-ce6b86680998" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142227Z:78bdcef0-7c30-41b1-964b-ce6b86680998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:22:26 GMT" + ], + "Content-Length": [ + "1164" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fullyQualifiedDomainName\": \"ps8957.e6076e7d5e5b.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"e6076e7d5e5b\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"proxyOverride\": \"Default\",\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\",\r\n \"zoneRedundant\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957?api-version=2021-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ac348-5916-4db2-941b-0919b9197fd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "463" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"subnetId\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/CustomerExperienceTeam_RG/providers/Microsoft.Network/virtualNetworks/vnet-managed-instance-v2/subnets/ManagedInstance\",\r\n \"vCores\": 4,\r\n \"publicDataEndpointEnabled\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "289003ce-a123-4380-ae77-62636ef659ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2849cbcb-8d58-4ea5-96eb-7fe30fc49b3c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T133656Z:2849cbcb-8d58-4ea5-96eb-7fe30fc49b3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 13:36:56 GMT" + ], + "Content-Length": [ + "691" + ], + "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\": 4\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"administratorLogin\": \"testusername\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"timezoneId\": \"UTC\",\r\n \"maintenanceConfigurationId\": \"SystemDefault\",\r\n \"privateEndpointConnections\": [],\r\n \"currentBackupStorageRedundancy\": \"Geo\",\r\n \"requestedBackupStorageRedundancy\": \"Geo\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957\",\r\n \"name\": \"ps8957\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "608da3e5-b595-464a-a9f0-089900661c5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2e88ce41-9c38-42a6-97ea-6e1ccb51689b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f352e3ce-8bd6-48e1-a260-fcc41bb34ae3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142258Z:f352e3ce-8bd6-48e1-a260-fcc41bb34ae3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:22:57 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "77467f2b-6565-49aa-a2fa-463e973610ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b9acdfd5-6a31-48f4-b6eb-005c99e19eca" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142258Z:b9acdfd5-6a31-48f4-b6eb-005c99e19eca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:22:58 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36146458-d885-44e3-a516-0a76efdcbf5e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "654fe873-65c0-482d-8d8a-aa373a314a30" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142446Z:654fe873-65c0-482d-8d8a-aa373a314a30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:46 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5eea314f-7864-4e49-a863-3d82236cd7aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "92a33174-e1e4-4257-ad1e-e4e0be5f2ba1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "ca5656fe-dc1b-474c-8f47-20053201b58a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142446Z:ca5656fe-dc1b-474c-8f47-20053201b58a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:46 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e68fb21-ada8-4f24-892c-2fb9ac9f686f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f5a9d82f-d3d7-49fb-88ab-c6960bc9d96f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f2bf6e30-8d89-4b45-b86d-10a9261cfde7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142447Z:f2bf6e30-8d89-4b45-b86d-10a9261cfde7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:46 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e68fb21-ada8-4f24-892c-2fb9ac9f686f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "509e72ba-b83b-41ee-836a-6aefed742372" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d4d3ee2b-d61d-4e62-b120-b826a9e7ba3b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142548Z:d4d3ee2b-d61d-4e62-b120-b826a9e7ba3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:25:48 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5a1a712-4209-41f4-9666-6619eb0478ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b50518fe-94a1-4dbc-a990-d67701fb9e74" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "8b146d41-6c04-4cd0-aebc-cbffcf7b1d31" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142549Z:8b146d41-6c04-4cd0-aebc-cbffcf7b1d31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:25:48 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5a1a712-4209-41f4-9666-6619eb0478ef" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1961f86-84cf-47d9-a3cd-2b870ccf5788" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "835e4621-86eb-4d28-b96a-9f8cbf7e64e4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142650Z:835e4621-86eb-4d28-b96a-9f8cbf7e64e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:26:50 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"dtcHostNameDnsSuffix\": \"chnsmgfwchcouky.hjctg3kijkkx.database.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/7d045754-2b53-45a4-8f89-9b12cd87f411?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "7d045754-2b53-45a4-8f89-9b12cd87f411" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "80d14717-3b07-4019-8b59-1042d5dc7b14" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142259Z:80d14717-3b07-4019-8b59-1042d5dc7b14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:22:59 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e68fb21-ada8-4f24-892c-2fb9ac9f686f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/224e1573-feba-41de-bc55-a8a24af97759?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "224e1573-feba-41de-bc55-a8a24af97759" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "bfc504a8-3e56-4758-9221-353992cf0375" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142447Z:bfc504a8-3e56-4758-9221-353992cf0375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:47 GMT" + ], + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": false,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzODk1Ny9kdGMvY3VycmVudD9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5a1a712-4209-41f4-9666-6619eb0478ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/db03e571-9abd-4ebc-8083-68ac636deb6f?api-version=2022-05-01-preview" + ], + "x-ms-request-id": [ + "db03e571-9abd-4ebc-8083-68ac636deb6f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a385d512-6d69-4044-af06-7f39b07ea9a4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142549Z:a385d512-6d69-4044-af06-7f39b07ea9a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:25:49 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"dtcEnabled\": true,\r\n \"securitySettings\": {\r\n \"transactionManagerCommunicationSettings\": {\r\n \"allowInboundEnabled\": true,\r\n \"allowOutboundEnabled\": true,\r\n \"authentication\": \"NoAuth\"\r\n },\r\n \"xaTransactionsEnabled\": true,\r\n \"snaLu6point2TransactionsEnabled\": true,\r\n \"xaTransactionsDefaultTimeout\": 0,\r\n \"xaTransactionsMaximumTimeout\": 0\r\n },\r\n \"externalDnsSuffixSearchList\": [\r\n \"hjctg3kijkkx.database.windows.net\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/managedInstances/ps8957/dtc/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Sql/managedInstances/dtc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/7d045754-2b53-45a4-8f89-9b12cd87f411?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzdkMDQ1NzU0LTJiNTMtNDVhNC04Zjg5LTliMTJjZDg3ZjQxMT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5e93b495-8bff-46c4-8a14-ff76debb2b07" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1216b84f-61a0-431b-be1b-2b1413e74cda" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142359Z:1216b84f-61a0-431b-be1b-2b1413e74cda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:23:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d045754-2b53-45a4-8f89-9b12cd87f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-01-24T14:22:59.437Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/7d045754-2b53-45a4-8f89-9b12cd87f411?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzdkMDQ1NzU0LTJiNTMtNDVhNC04Zjg5LTliMTJjZDg3ZjQxMT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3a70c06f-f98e-4ca1-a6e3-4f94914372d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "12f34d66-c529-4d96-befc-58b75584c229" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142415Z:12f34d66-c529-4d96-befc-58b75584c229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d045754-2b53-45a4-8f89-9b12cd87f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-01-24T14:22:59.437Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/7d045754-2b53-45a4-8f89-9b12cd87f411?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzdkMDQ1NzU0LTJiNTMtNDVhNC04Zjg5LTliMTJjZDg3ZjQxMT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d6352920-1a1a-4919-9513-411a3a760f75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3c7b969c-8dd5-4334-9340-fb497dbde4af" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142430Z:3c7b969c-8dd5-4334-9340-fb497dbde4af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d045754-2b53-45a4-8f89-9b12cd87f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-01-24T14:22:59.437Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/7d045754-2b53-45a4-8f89-9b12cd87f411?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzdkMDQ1NzU0LTJiNTMtNDVhNC04Zjg5LTliMTJjZDg3ZjQxMT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0b15b4-1600-42f4-ac43-7b0686774c05" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "192a2924-2511-4473-9e76-546a8ea39007" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "0c9cbfd4-1164-4749-9f5f-5c059e4e8d5d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142445Z:0c9cbfd4-1164-4749-9f5f-5c059e4e8d5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:24:45 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d045754-2b53-45a4-8f89-9b12cd87f411\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T14:22:59.437Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/224e1573-feba-41de-bc55-a8a24af97759?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uLzIyNGUxNTczLWZlYmEtNDFkZS1iYzU1LWE4YTI0YWY5Nzc1OT9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e68fb21-ada8-4f24-892c-2fb9ac9f686f" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8e54fa67-a1e2-4f4c-a2f4-5ada96694dcc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "8c4af4fd-aa54-4db3-907c-775592ef3963" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142548Z:8c4af4fd-aa54-4db3-907c-775592ef3963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:25:48 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"224e1573-feba-41de-bc55-a8a24af97759\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T14:24:47.407Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourceGroups/ps4129/providers/Microsoft.Sql/locations/westcentralus/managedInstanceDtcAzureAsyncOperation/db03e571-9abd-4ebc-8083-68ac636deb6f?api-version=2022-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlR3JvdXBzL3BzNDEyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VEdGNBenVyZUFzeW5jT3BlcmF0aW9uL2RiMDNlNTcxLTlhYmQtNGViYy04MDgzLTY4YWM2MzZkZWI2Zj9hcGktdmVyc2lvbj0yMDIyLTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5a1a712-4209-41f4-9666-6619eb0478ef" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Sql.SqlManagementClient/4.2.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c64f3917-e134-45de-886f-2733a9564560" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "88d13c3a-a290-455b-9b94-889c6a7e1676" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142650Z:88d13c3a-a290-455b-9b94-889c6a7e1676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:26:49 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"db03e571-9abd-4ebc-8083-68ac636deb6f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-01-24T14:25:49.33Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/resourcegroups/ps4129?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL3Jlc291cmNlZ3JvdXBzL3BzNDEyOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "161309ca-3f4a-47dc-8f8f-8a79deddb865" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "204e9978-7172-4b84-97fd-72fd2a0d1b81" + ], + "x-ms-correlation-request-id": [ + "204e9978-7172-4b84-97fd-72fd2a0d1b81" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142654Z:204e9978-7172-4b84-97fd-72fd2a0d1b81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:26:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "907d5fb7-7299-4d27-84df-871ad581a866" + ], + "x-ms-correlation-request-id": [ + "907d5fb7-7299-4d27-84df-871ad581a866" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142709Z:907d5fb7-7299-4d27-84df-871ad581a866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:27:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "04dab71d-986b-4a03-ab4e-3964b5b0c234" + ], + "x-ms-correlation-request-id": [ + "04dab71d-986b-4a03-ab4e-3964b5b0c234" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142724Z:04dab71d-986b-4a03-ab4e-3964b5b0c234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:27:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f40dfc95-084e-4425-8391-48291e46ae84" + ], + "x-ms-correlation-request-id": [ + "f40dfc95-084e-4425-8391-48291e46ae84" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142739Z:f40dfc95-084e-4425-8391-48291e46ae84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:27:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "8b3b9ca4-5214-475c-a9c6-35c3b012f23b" + ], + "x-ms-correlation-request-id": [ + "8b3b9ca4-5214-475c-a9c6-35c3b012f23b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142755Z:8b3b9ca4-5214-475c-a9c6-35c3b012f23b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:27:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "94591078-07f1-4da8-9bd4-1ba6be4ec43f" + ], + "x-ms-correlation-request-id": [ + "94591078-07f1-4da8-9bd4-1ba6be4ec43f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142810Z:94591078-07f1-4da8-9bd4-1ba6be4ec43f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:28:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "cbf4b883-e8e8-4bd1-ad69-8eddc63e1f29" + ], + "x-ms-correlation-request-id": [ + "cbf4b883-e8e8-4bd1-ad69-8eddc63e1f29" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142825Z:cbf4b883-e8e8-4bd1-ad69-8eddc63e1f29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:28:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "c3af3979-cb1b-49be-909b-3528591df17d" + ], + "x-ms-correlation-request-id": [ + "c3af3979-cb1b-49be-909b-3528591df17d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142841Z:c3af3979-cb1b-49be-909b-3528591df17d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:28:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "713577f3-44c0-4a54-89ea-11638b79c76b" + ], + "x-ms-correlation-request-id": [ + "713577f3-44c0-4a54-89ea-11638b79c76b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142856Z:713577f3-44c0-4a54-89ea-11638b79c76b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:28:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "d553df1a-f318-4e8f-ae83-4f18acada771" + ], + "x-ms-correlation-request-id": [ + "d553df1a-f318-4e8f-ae83-4f18acada771" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142911Z:d553df1a-f318-4e8f-ae83-4f18acada771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:29:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "44c48c6b-3897-45e5-ba71-14086686a134" + ], + "x-ms-correlation-request-id": [ + "44c48c6b-3897-45e5-ba71-14086686a134" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142927Z:44c48c6b-3897-45e5-ba71-14086686a134" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:29:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "5f7640a0-0ac3-4173-9722-e001eae07901" + ], + "x-ms-correlation-request-id": [ + "5f7640a0-0ac3-4173-9722-e001eae07901" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142942Z:5f7640a0-0ac3-4173-9722-e001eae07901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:29:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "b7ed0680-fbe6-4dd2-9661-857207947168" + ], + "x-ms-correlation-request-id": [ + "b7ed0680-fbe6-4dd2-9661-857207947168" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T142957Z:b7ed0680-fbe6-4dd2-9661-857207947168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:29:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "3d2ee472-c99d-46b0-8376-b7e4d38eab00" + ], + "x-ms-correlation-request-id": [ + "3d2ee472-c99d-46b0-8376-b7e4d38eab00" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T143013Z:3d2ee472-c99d-46b0-8376-b7e4d38eab00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:30:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "99d531a9-cdd6-46ca-a934-b2bb1b36ccad" + ], + "x-ms-correlation-request-id": [ + "99d531a9-cdd6-46ca-a934-b2bb1b36ccad" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T143028Z:99d531a9-cdd6-46ca-a934-b2bb1b36ccad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:30:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "7a98d745-8c47-4499-9ee8-a2e7bd97600c" + ], + "x-ms-correlation-request-id": [ + "7a98d745-8c47-4499-9ee8-a2e7bd97600c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T143043Z:7a98d745-8c47-4499-9ee8-a2e7bd97600c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:30:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "21d2e435-fc45-4693-9946-7254eea7d54f" + ], + "x-ms-correlation-request-id": [ + "21d2e435-fc45-4693-9946-7254eea7d54f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T143059Z:21d2e435-fc45-4693-9946-7254eea7d54f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8313371e-0879-428e-b1da-6353575a9192/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODMxMzM3MWUtMDg3OS00MjhlLWIxZGEtNjM1MzU3NWE5MTkyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "461405a9-b5d6-4fb1-b51f-6b4d962b25ab" + ], + "x-ms-correlation-request-id": [ + "461405a9-b5d6-4fb1-b51f-6b4d962b25ab" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20230124T143059Z:461405a9-b5d6-4fb1-b51f-6b4d962b25ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Jan 2023 14:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", "StatusCode": 200 } ], - "Names": {}, + "Names": { + "Test-ManagedInstanceDtcPipingScenarios": [ + "ps4129", + "ps8957" + ] + }, "Variables": { "SubscriptionId": "8313371e-0879-428e-b1da-6353575a9192" } diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index c1bba8b7d3e1..c33c9942d3a4 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Upcoming Release * Added an optional parameter `HAReplicaCount` to `Restore-AzSqlDatabase` +* Added new cmdlets for managed instance DTC + `Get-AzSqlInstanceDtc` + `Set-AzSqlInstanceDtc` ## Version 4.2.0 * Added a parameter named `UseIdentity` for `Set-AzSqlServerAudit`, `Set-AzSqlDatabaseAudit`, `Set-AzSqlServerMSSupportAudit` diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md new file mode 100644 index 000000000000..ac49b30e8d37 --- /dev/null +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md @@ -0,0 +1,188 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Get-AzSqlInstanceDtc + +## SYNOPSIS +Gets an Azure SQL Managed Instance DTC. + +## SYNTAX + +### GetByNameParameterSet (Default) +``` +Get-AzSqlInstanceDtc [-ResourceGroupName] [-InstanceName] + [-DefaultProfile ] [] +``` + +### GetByParentObjectParameterSet +``` +Get-AzSqlInstanceDtc [-InstanceObject] + [-DefaultProfile ] [] +``` + +### GetByResourceIdParameterSet +``` +Get-AzSqlInstanceDtc [-ResourceId] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzSqlInstanceDtc** cmdlet returns information about an Azure SQL Managed Instance DTC. + +## EXAMPLES + +### Example 1 Get the managed instance DTC +```powershell +Get-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command gets the managed instance DTC of the managed instance. + +### Example 2 Get the managed instance DTC of the previously fetched managed instance +```powershell +$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +Get-AzSqlInstanceDtc -InstanceObject $managedInstance +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command gets the managed instance DTC by passing the managed instance object. + +### Example 3 Get the managed instance DTC with the specified resource ID +```powershell +Get-AzSqlInstanceDtc -ResourceId /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command gets the managed instance DTC by passing the resource ID of the DTC. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceName +Name of the managed instance. + +```yaml +Type: String +Parameter Sets: GetByNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceObject +Input object of the managed instance. + +```yaml +Type: AzureSqlManagedInstanceModel +Parameter Sets: GetByParentObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Name of the resource group. + +```yaml +Type: String +Parameter Sets: GetByNameParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Resource ID of the managed instance DTC. + +```yaml +Type: String +Parameter Sets: GetByResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model.AzureSqlManagedInstanceDtcModel + +## NOTES + +## RELATED LINKS + +[Set-AzSqlInstanceDtc](./Set-AzSqlInstanceDtc.md) + +[SQL Managed Instance DTC Documentation](https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/distributed-transaction-coordinator-dtc?view=azuresql) \ No newline at end of file diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md new file mode 100644 index 000000000000..24af266bda2c --- /dev/null +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md @@ -0,0 +1,456 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Set-AzSqlInstanceDtc + +## SYNOPSIS +Sets properties for an Azure SQL Managed Instance DTC + +## SYNTAX + +### SetByNameParameterSet (Default) +``` +Set-AzSqlInstanceDtc [-ResourceGroupName] [-InstanceName] [[-DtcEnabled] ] + [[-ExternalDnsSuffixSearchList] ] + [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] + [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByParentObjectParameterSet +``` +Set-AzSqlInstanceDtc [-InstanceObject] [[-DtcEnabled] ] + [[-ExternalDnsSuffixSearchList] ] + [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] + [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByInputObjectParameterSet +``` +Set-AzSqlInstanceDtc [-InputObject] [[-DtcEnabled] ] + [[-ExternalDnsSuffixSearchList] ] + [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] + [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByResourceIdParameterSet +``` +Set-AzSqlInstanceDtc [-ResourceId] [[-DtcEnabled] ] + [[-ExternalDnsSuffixSearchList] ] + [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] + [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzSqlInstanceDtc** cmdlet modifies properties of an Azure SQL Managed instance DTC. + +## EXAMPLES + +### Example 1 Enable DTC for a managed instance +```powershell +Set-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 -DtcEnabled $true +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command enables managed instance DTC for the managed instance ManagedInstance1. + +### Example 2 Enable XA transactions for DTC +```powershell +$dtc = Set-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 -XaTransactionsEnabled $true +Write-Output $dtc.SecuritySettings +``` + +```output +TransactionManagerCommunicationSettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcTransactionManagerCommunicationSettings +XaTransactionsEnabled : True +SnaLu6point2TransactionsEnabled : True +XaTransactionsDefaultTimeout : 0 +XaTransactionsMaximumTimeout : 0 +``` + +This command enables XA transactions for managed instance DTC + +### Example 3 Enable DTC for a previously fetched managed instance +```powershell +$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +Set-AzSqlInstanceDtc -InstanceObject $managedInstance +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command enables managed instance DTC by passing managed instance object. + +### Example 4 Enable XA transactions for a previously fetched DTC object +```powershell +$dtc = Get-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +$dtc = Set-AzSqlInstanceDtc -InputObject $dtc -DtcEnabled $true +Write-Output $dtc.SecuritySettings +``` + +```output +TransactionManagerCommunicationSettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcTransactionManagerCommunicationSettings +XaTransactionsEnabled : True +SnaLu6point2TransactionsEnabled : True +XaTransactionsDefaultTimeout : 0 +XaTransactionsMaximumTimeout : 0 +``` + +This command enables XA transactions for DTC by passing DTC object. + +### Example 5 Enable DTC with a specific resource ID +```powershell +Set-AzSqlInstanceDtc -ResourceId /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current -DtcEnabled $true +``` + +```output +ResourceGroupName : ResourceGroup1 +ManagedInstanceName : ManagedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup1/providers/Microsoft.Sql/managedInstances/ManagedInstance1/dtc/current +DtcEnabled : True +DtcHostNameDnsSuffix : suffix1.net +DtcHostName : name1.suffix1.net +ExternalDnsSuffixSearchList : {suffix1.net} +SecuritySettings : Microsoft.Azure.Management.Sql.Models.ManagedInstanceDtcSecuritySettings +``` + +This command enables managed instance DTC by passing the resource ID of the DTC. + +## PARAMETERS + +### -AllowInboundEnabled +Enable inbound traffic. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowOutboundEnabled +Enable outbound traffic. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Authentication +Authentication type. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DtcEnabled +DTC enabled status. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExternalDnsSuffixSearchList +External DNS suffix search list. + +```yaml +Type: System.Collections.Generic.List`1[System.String] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Skip confirmation message for performing the action. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Input object of the managed instance DTC. + +```yaml +Type: AzureSqlManagedInstanceDtcModel +Parameter Sets: SetByInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +Name of the managed instance. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceObject +Input object of the managed instance. + +```yaml +Type: AzureSqlManagedInstanceModel +Parameter Sets: SetByParentObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Name of the resource group. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Resource ID of the managed instance DTC. + +```yaml +Type: String +Parameter Sets: SetByResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SnaLu6point2TransactionsEnabled +SNA LU 6.2 transactions enabled status. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -XaTransactionsDefaultTimeout +XA transactions default timeout. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -XaTransactionsEnabled +XA transactions enabled status. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -XaTransactionsMaximumTimeout +XA transactions maximum timeout. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel + +### Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model.AzureSqlManagedInstanceDtcModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model.AzureSqlManagedInstanceDtcModel + +## NOTES + +## RELATED LINKS +[Get-AzSqlInstanceDtc](./Get-AzSqlInstanceDtc.md) + +[SQL Managed Instance DTC Documentation](https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/distributed-transaction-coordinator-dtc?view=azuresql) \ No newline at end of file From b89db2f91f7bba35484c99ae21047bf81e489452 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Tue, 24 Jan 2023 16:35:17 +0100 Subject: [PATCH 5/9] Updated help files --- src/Sql/Sql/help/Az.Sql.md | 8 ++++- src/Sql/Sql/help/Get-AzSqlInstanceDtc.md | 10 +++---- src/Sql/Sql/help/Set-AzSqlInstanceDtc.md | 37 ++++++++++++------------ 3 files changed, 31 insertions(+), 24 deletions(-) diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md index 0c2de557bc86..0076d67645f9 100644 --- a/src/Sql/Sql/help/Az.Sql.md +++ b/src/Sql/Sql/help/Az.Sql.md @@ -290,6 +290,9 @@ Gets all vulnerability assessment scan record(s) associated with a given managed ### [Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting](Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a managed database. +### [Get-AzSqlInstanceDtc](Get-AzSqlInstanceDtc.md) +Gets an Azure SQL Managed Instance DTC. + ### [Get-AzSqlInstanceEndpointCertificate](Get-AzSqlInstanceEndpointCertificate.md) Returns information about endpoint certificates. @@ -353,7 +356,7 @@ Gets or lists Azure SQL Server DNS Alias. ### [Get-AzSqlServerFirewallRule](Get-AzSqlServerFirewallRule.md) Gets firewall rules for a SQL Database server. -### [Get-AzSqlServerIpv6FirewallRule ](Get-AzSqlServerIpv6FirewallRule .md) +### [Get-AzSqlServerIpv6FirewallRule](Get-AzSqlServerIpv6FirewallRule.md) Gets IPv6 firewall rules for a SQL Database server. ### [Get-AzSqlServerKeyVaultKey](Get-AzSqlServerKeyVaultKey.md) @@ -737,6 +740,9 @@ Sets the information types and sensitivity labels of columns in the Azure SQL Ma ### [Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline](Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline.md) Sets the vulnerability assessment rule baseline. +### [Set-AzSqlInstanceDtc](Set-AzSqlInstanceDtc.md) +Sets properties for an Azure SQL Managed Instance DTC + ### [Set-AzSqlInstancePool](Set-AzSqlInstancePool.md) Sets properties for an Azure SQL Instance pool. diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md index ac49b30e8d37..5ad9f81baa9e 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md @@ -95,7 +95,7 @@ This command gets the managed instance DTC by passing the resource ID of the DTC The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -110,7 +110,7 @@ Accept wildcard characters: False Name of the managed instance. ```yaml -Type: String +Type: System.String Parameter Sets: GetByNameParameterSet Aliases: @@ -125,7 +125,7 @@ Accept wildcard characters: False Input object of the managed instance. ```yaml -Type: AzureSqlManagedInstanceModel +Type: Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel Parameter Sets: GetByParentObjectParameterSet Aliases: @@ -140,7 +140,7 @@ Accept wildcard characters: False Name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: GetByNameParameterSet Aliases: @@ -155,7 +155,7 @@ Accept wildcard characters: False Resource ID of the managed instance DTC. ```yaml -Type: String +Type: System.String Parameter Sets: GetByResourceIdParameterSet Aliases: diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md index 24af266bda2c..05f2cfedd68a 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md @@ -151,7 +151,7 @@ This command enables managed instance DTC by passing the resource ID of the DTC. Enable inbound traffic. ```yaml -Type: Boolean +Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: @@ -166,7 +166,7 @@ Accept wildcard characters: False Enable outbound traffic. ```yaml -Type: Boolean +Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: @@ -181,7 +181,7 @@ Accept wildcard characters: False Run cmdlet in the background. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -196,7 +196,7 @@ Accept wildcard characters: False Authentication type. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -211,7 +211,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -226,7 +226,7 @@ Accept wildcard characters: False DTC enabled status. ```yaml -Type: Boolean +Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: @@ -256,7 +256,7 @@ Accept wildcard characters: False Skip confirmation message for performing the action. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -271,7 +271,7 @@ Accept wildcard characters: False Input object of the managed instance DTC. ```yaml -Type: AzureSqlManagedInstanceDtcModel +Type: Microsoft.Azure.Commands.Sql.ManagedInstanceDtc.Model.AzureSqlManagedInstanceDtcModel Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -286,7 +286,7 @@ Accept wildcard characters: False Name of the managed instance. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -301,7 +301,7 @@ Accept wildcard characters: False Input object of the managed instance. ```yaml -Type: AzureSqlManagedInstanceModel +Type: Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel Parameter Sets: SetByParentObjectParameterSet Aliases: @@ -316,7 +316,7 @@ Accept wildcard characters: False Name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -331,7 +331,7 @@ Accept wildcard characters: False Resource ID of the managed instance DTC. ```yaml -Type: String +Type: System.String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -346,7 +346,7 @@ Accept wildcard characters: False SNA LU 6.2 transactions enabled status. ```yaml -Type: Boolean +Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: @@ -361,7 +361,7 @@ Accept wildcard characters: False XA transactions default timeout. ```yaml -Type: Int32 +Type: System.Nullable`1[System.Int32] Parameter Sets: (All) Aliases: @@ -376,7 +376,7 @@ Accept wildcard characters: False XA transactions enabled status. ```yaml -Type: Boolean +Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: @@ -391,7 +391,7 @@ Accept wildcard characters: False XA transactions maximum timeout. ```yaml -Type: Int32 +Type: System.Nullable`1[System.Int32] Parameter Sets: (All) Aliases: @@ -406,7 +406,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -422,7 +422,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -451,6 +451,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + [Get-AzSqlInstanceDtc](./Get-AzSqlInstanceDtc.md) [SQL Managed Instance DTC Documentation](https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/distributed-transaction-coordinator-dtc?view=azuresql) \ No newline at end of file From 17dbf2a956886a15ea630eb198e16ad35973ce86 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Tue, 24 Jan 2023 17:14:23 +0100 Subject: [PATCH 6/9] Fixed help files --- src/Sql/Sql/help/Get-AzSqlInstanceDtc.md | 2 +- src/Sql/Sql/help/Set-AzSqlInstanceDtc.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md index 5ad9f81baa9e..542482e8756d 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md @@ -54,7 +54,7 @@ This command gets the managed instance DTC of the managed instance. ### Example 2 Get the managed instance DTC of the previously fetched managed instance ```powershell -$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 Get-AzSqlInstanceDtc -InstanceObject $managedInstance ``` diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md index 05f2cfedd68a..392ff6b092a7 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md @@ -93,7 +93,7 @@ This command enables XA transactions for managed instance DTC ### Example 3 Enable DTC for a previously fetched managed instance ```powershell -$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +$managedInstance = Get-AzSqlInstance -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 Set-AzSqlInstanceDtc -InstanceObject $managedInstance ``` @@ -112,7 +112,7 @@ This command enables managed instance DTC by passing managed instance object. ### Example 4 Enable XA transactions for a previously fetched DTC object ```powershell -$dtc = Get-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -Name ManagedInstance1 +$dtc = Get-AzSqlInstanceDtc -ResourceGroupName ResourceGroup1 -InstanceName ManagedInstance1 $dtc = Set-AzSqlInstanceDtc -InputObject $dtc -DtcEnabled $true Write-Output $dtc.SecuritySettings ``` From 8730b3c67b8c8b3eb37e20516089f0b6a3925d72 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Tue, 24 Jan 2023 18:18:15 +0100 Subject: [PATCH 7/9] Removed excess positions --- .../Cmdlet/SetAzureSqlManagedInstanceDtc.cs | 2 +- src/Sql/Sql/help/Set-AzSqlInstanceDtc.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs index 7b0f93d5f28b..418f7319203c 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Cmdlet/SetAzureSqlManagedInstanceDtc.cs @@ -96,7 +96,7 @@ public class SetAzureSqlManagedInstanceDtc: ManagedInstanceDtcCmdletBase /// /// Gets or sets allow XA Transactions to managed instance DTC. /// - [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, Position = 4, HelpMessage = "XA transactions enabled status.")] + [Parameter(Mandatory = false, ParameterSetName = SetByNameParameterSet, HelpMessage = "XA transactions enabled status.")] [Parameter(Mandatory = false, ParameterSetName = SetByParentObjectParameterSet, Position = 3, HelpMessage = "XA transactions enabled status.")] [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet, HelpMessage = "XA transactions enabled status.")] [Parameter(Mandatory = false, ParameterSetName = SetByResourceIdParameterSet, Position = 3, HelpMessage = "XA transactions enabled status.")] diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md index 392ff6b092a7..f7b2f017df4c 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md @@ -16,7 +16,7 @@ Sets properties for an Azure SQL Managed Instance DTC ``` Set-AzSqlInstanceDtc [-ResourceGroupName] [-InstanceName] [[-DtcEnabled] ] [[-ExternalDnsSuffixSearchList] ] - [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsEnabled ] [-SnaLu6point2TransactionsEnabled ] [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -26,7 +26,7 @@ Set-AzSqlInstanceDtc [-ResourceGroupName] [-InstanceName] [[-D ``` Set-AzSqlInstanceDtc [-InstanceObject] [[-DtcEnabled] ] [[-ExternalDnsSuffixSearchList] ] - [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsEnabled ] [-SnaLu6point2TransactionsEnabled ] [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -36,7 +36,7 @@ Set-AzSqlInstanceDtc [-InstanceObject] [[-DtcEnab ``` Set-AzSqlInstanceDtc [-InputObject] [[-DtcEnabled] ] [[-ExternalDnsSuffixSearchList] ] - [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsEnabled ] [-SnaLu6point2TransactionsEnabled ] [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -46,7 +46,7 @@ Set-AzSqlInstanceDtc [-InputObject] [[-DtcEnab ``` Set-AzSqlInstanceDtc [-ResourceId] [[-DtcEnabled] ] [[-ExternalDnsSuffixSearchList] ] - [[-XaTransactionsEnabled] ] [-SnaLu6point2TransactionsEnabled ] + [-XaTransactionsEnabled ] [-SnaLu6point2TransactionsEnabled ] [-XaTransactionsDefaultTimeout ] [-XaTransactionsMaximumTimeout ] [-AllowInboundEnabled ] [-AllowOutboundEnabled ] [-Authentication ] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -381,7 +381,7 @@ Parameter Sets: (All) Aliases: Required: False -Position: 4 +Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False From 4fc748e17ccfe23b986011103eb17d9adfaf4a5b Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Thu, 26 Jan 2023 15:27:21 +0100 Subject: [PATCH 8/9] Added a safeguard for the DTC model and modified the comment to better explain how the host name and dns suffix are related --- .../AzureSqlManagedInstanceDtcAdapter.cs | 23 +++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs index e8c38b769cce..661b5daa0d26 100644 --- a/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs +++ b/src/Sql/Sql/ManagedInstanceDtc/Services/AzureSqlManagedInstanceDtcAdapter.cs @@ -66,10 +66,25 @@ private AzureSqlManagedInstanceDtcModel CreateManagedInstanceDtcModelFromRespons managedInstanceDtcModel.ResourceGroupName= resourceGroup; managedInstanceDtcModel.DtcEnabled = managedInstanceDtc.DtcEnabled.GetValueOrDefault(); - // Due to a bug in DTC workflows, the full host name is returned as a DTC host name DNS suffix. - // However, we can extract the suffix from the host name. - managedInstanceDtcModel.DtcHostName = managedInstanceDtc.DtcHostNameDnsSuffix; - managedInstanceDtcModel.DtcHostNameDnsSuffix = managedInstanceDtc.DtcHostNameDnsSuffix.Substring(managedInstanceDtc.DtcHostNameDnsSuffix.IndexOf('.') + 1); + // Due to a bug in the API, the dtcHostName is returned as the DtcHostNameDnsSuffix property. Also the DtcHostName doesn't exist as a property of the response currently. + // The new API versions (with a fix) should return DtcHostName property and the correct value for DtcHostNameDnsSuffix. + // Currently, as a workaround we check if the DtcHostName property exists on the response. + // If it doesn't exist, we use the DtcHostNameDnsSuffix from the response as the DtcHostName. The model's DtcHostNameDnsSuffix (the actual suffix) needs to be + // extracted from the response's DtcHostNameDnsSuffix. + // If it exists, we just take those values from the API response directly. + var managedInstanceDtcHostName = managedInstanceDtc.GetType().GetProperty("DtcHostName"); + if (managedInstanceDtcHostName == null) + { + managedInstanceDtcModel.DtcHostName = managedInstanceDtc.DtcHostNameDnsSuffix; + managedInstanceDtcModel.DtcHostNameDnsSuffix = managedInstanceDtc.DtcHostNameDnsSuffix.Substring(managedInstanceDtc.DtcHostNameDnsSuffix.IndexOf('.') + 1); + } + else + { + // After the new version of API gets released, next line should be changed to: + // managedInstanceDtcModel.DtcHostName = managedInstanceDtc.DtcHostName + managedInstanceDtcModel.DtcHostName = (string)managedInstanceDtcHostName.GetValue(managedInstanceDtc); + managedInstanceDtcModel.DtcHostNameDnsSuffix = managedInstanceDtc.DtcHostNameDnsSuffix; + } managedInstanceDtcModel.ExternalDnsSuffixSearchList = managedInstanceDtc.ExternalDnsSuffixSearchList.ToList(); managedInstanceDtcModel.SecuritySettings = managedInstanceDtc.SecuritySettings; From 30abb7b6a255ab6b69b9ee12689a56711315cd26 Mon Sep 17 00:00:00 2001 From: Stefan Krivokapic Date: Mon, 30 Jan 2023 12:50:33 +0100 Subject: [PATCH 9/9] Adressing comments --- src/Sql/Sql.Sdk/README.md | 2 +- src/Sql/Sql/help/Get-AzSqlInstanceDtc.md | 2 +- src/Sql/Sql/help/Set-AzSqlInstanceDtc.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql.Sdk/README.md b/src/Sql/Sql.Sdk/README.md index a0d1a3db832e..fea1a1f0760a 100644 --- a/src/Sql/Sql.Sdk/README.md +++ b/src/Sql/Sql.Sdk/README.md @@ -107,7 +107,7 @@ input-file: - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-02-01-preview/DatabaseAdvancedThreatProtectionSettings.json - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-02-01-preview/ServerAdvancedThreatProtectionSettings.json - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2021-11-01-preview/ManagedServerDnsAliases.json - - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/sql/resource-manager/Microsoft.Sql/preview/2022-05-01-preview/ManagedInstanceDtcs.json + - https://github.com/Azure/azure-rest-api-specs/blob/549bc277952e66577d69ce137eea810c9815ef22/specification/sql/resource-manager/Microsoft.Sql/preview/2022-05-01-preview/ManagedInstanceDtcs.json output-folder: Generated diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md index 542482e8756d..64b356679d68 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDtc.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://learn.microsoft.com/powershell/module/az.sql/get-azsqlinstancedtc schema: 2.0.0 --- diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md index f7b2f017df4c..fc5600560cd7 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDtc.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://learn.microsoft.com/powershell/module/az.sql/set-azsqlinstancedtc schema: 2.0.0 ---