diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs index 5c8500a76bb1..26f65a2f9a86 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs @@ -541,6 +541,36 @@ internal DedicatedHostsOperations(ComputeManagementClient client) return _result; } + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Create or update a dedicated host . /// @@ -1179,6 +1209,193 @@ internal DedicatedHostsOperations(ComputeManagementClient client) return _result; } + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-11-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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.Compute/hostGroups/{hostGroupName}/hosts/{hostName}/restart").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Lists all of the dedicated hosts in the specified dedicated host group. Use /// the nextLink property in the response to get the next page of dedicated diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs index f2220b4a5782..fabf22468b17 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs @@ -270,6 +270,59 @@ public static IPage ListByHostGroup(this IDedicatedHostsOperation } } + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + public static void Restart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + { + operations.RestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + } + + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Create or update a dedicated host . /// @@ -417,6 +470,59 @@ public static void BeginDelete(this IDedicatedHostsOperations operations, string (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + public static void BeginRestart(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + { + operations.BeginRestartAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + } + + /// + /// Restart the dedicated host. The operation will complete successfully once + /// the dedicated host has restarted and is running. To determine the health of + /// VMs deployed on the dedicated host after the restart check the Resource + /// Health Center in the Azure Portal. Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The cancellation token. + /// + public static async Task BeginRestartAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Lists all of the dedicated hosts in the specified dedicated host group. Use /// the nextLink property in the response to get the next page of dedicated diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs index 3f21a00e6770..e67471db2663 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs @@ -172,6 +172,37 @@ public partial interface IDedicatedHostsOperations /// Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Restart the dedicated host. The operation will complete + /// successfully once the dedicated host has restarted and is running. + /// To determine the health of VMs deployed on the dedicated host after + /// the restart check the Resource Health Center in the Azure Portal. + /// Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task RestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Create or update a dedicated host . /// /// @@ -259,6 +290,37 @@ public partial interface IDedicatedHostsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Restart the dedicated host. The operation will complete + /// successfully once the dedicated host has restarted and is running. + /// To determine the health of VMs deployed on the dedicated host after + /// the restart check the Resource Health Center in the Azure Portal. + /// Please refer to + /// https://docs.microsoft.com/en-us/azure/service-health/resource-health-overview + /// for more details. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Lists all of the dedicated hosts in the specified dedicated host /// group. Use the nextLink property in the response to get the next /// page of dedicated hosts. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs index 8c7cd1d794df..74f5b4e089fe 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs @@ -12,6 +12,7 @@ using System; using System.Collections.Generic; using System.Text.RegularExpressions; +using System.Threading; namespace Compute.Tests { @@ -125,6 +126,51 @@ public void TestNonZonalDedicatedHostGroupInstanceViewAndAutomaticPlacement() } } + [Fact] + public void TestDedicatedHostRestart() + { + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + using (MockContext context = MockContext.Start(this.GetType())) + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "centraluseuap"); + EnsureClientsInitialized(context); + + string baseRGName = ComputeManagementTestUtilities.GenerateName(TestPrefix); + string rgName = baseRGName + "DH"; + string dhgName = "DHG-1"; + string dhName = "DH-1"; + + try + { + // Create a dedicated host group, then get the dedicated host group and validate that they match + DedicatedHostGroup createdDHG = CreateDedicatedHostGroup(rgName, dhgName, availabilityZone: null); + DedicatedHostGroup returnedDHG = m_CrpClient.DedicatedHostGroups.Get(rgName, dhgName); + ValidateDedicatedHostGroup(createdDHG, returnedDHG); + + //Create DedicatedHost within the DedicatedHostGroup and validate + var createdDH = CreateDedicatedHost(rgName, dhgName, dhName, "ESv3-Type1"); + var returnedDH = m_CrpClient.DedicatedHosts.Get(rgName, dhgName, dhName); + ValidateDedicatedHost(createdDH, returnedDH); + + // Validate dedicated host group instance view + DedicatedHostGroup returnedDHGWithInstanceView = m_CrpClient.DedicatedHostGroups.Get(rgName, dhgName, InstanceViewTypes.InstanceView); + ValidateDedicatedHostGroupInstanceView(returnedDHGWithInstanceView, createdDH); + + // Restart the DedicatedHost + m_CrpClient.DedicatedHosts.Restart(rgName, dhgName, dhName); + + // Delete DedicatedHost and DedicatedHostGroup + m_CrpClient.DedicatedHosts.Delete(rgName, dhgName, dhName); + m_CrpClient.DedicatedHostGroups.Delete(rgName, dhgName); + } + finally + { + m_ResourcesClient.ResourceGroups.Delete(rgName); + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + } + } + } + private void ValidateDedicatedHostGroup(DedicatedHostGroup expectedDHG, DedicatedHostGroup actualDHG) { if (expectedDHG == null) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostRestart.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostRestart.json new file mode 100644 index 000000000000..6b35b7efbd3d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostRestart.json @@ -0,0 +1,1169 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourcegroups/crptestar5957DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU5NTdESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:12Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abd65de0-38d0-42f6-be0e-1b02be0ec3be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "84e6a815-57b6-4095-aef5-732575dc20f0" + ], + "x-ms-correlation-request-id": [ + "84e6a815-57b6-4095-aef5-732575dc20f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232413Z:84e6a815-57b6-4095-aef5-732575dc20f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "240" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH\",\r\n \"name\": \"crptestar5957DH\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:12Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8c5d870-20f2-4ff6-afb0-853aa9108a75" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;119,Microsoft.Compute/PutDeleteDedicatedHost30Min;599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "823bbef2-cc22-4472-a63a-02b0eeb00355" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f3192763-58d0-4d10-9891-e9fb0c6edd4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232417Z:f3192763-58d0-4d10-9891-e9fb0c6edd4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/CRPTESTAR5957DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d06a5b9-229c-4e64-a8e0-edd900844a65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c751a3d2-3668-4a19-8919-85c852a01014" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d515cecb-73c2-47d9-8477-f4e593d5cddf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232417Z:d515cecb-73c2-47d9-8477-f4e593d5cddf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/CRPTESTAR5957DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08716de2-8407-48e4-9cd5-05b07e6184a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "963ddd4f-5a9d-4eaa-9d51-9bf995b9020c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "811182e9-d5af-40b7-8ae4-9c81e8ebb7f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232417Z:811182e9-d5af-40b7-8ae4-9c81e8ebb7f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/CRPTESTAR5957DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:17Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dad2ea0-8822-4c37-a45e-bbbf5d57939f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "145" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/67f421a8-6fb4-4bd8-98f5-b97621c28e8a?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;118,Microsoft.Compute/PutDeleteDedicatedHost30Min;598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67f421a8-6fb4-4bd8-98f5-b97621c28e8a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1dd132be-1e22-4d52-ba41-d58ccc88ec39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232419Z:1dd132be-1e22-4d52-ba41-d58ccc88ec39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "604" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:17Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"platformFaultDomain\": 0,\r\n \"autoReplaceOnFailure\": true,\r\n \"hostId\": \"5d1a2271-2213-4dbd-a9ed-b2965b0f3d10\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-01-11T15:24:18.5763455-08:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/67f421a8-6fb4-4bd8-98f5-b97621c28e8a?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzY3ZjQyMWE4LTZmYjQtNGJkOC05OGY1LWI5NzYyMWMyOGU4YT9wPTgyNGRhMDhiLWM4MTMtNGVjNy1iN2RlLTdkMWEyNmQyOTI5MCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a525fda9-af39-4c93-a122-878e72be8a73" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e9e4d972-fe36-491f-abc6-3fad36dd8406" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232449Z:e9e4d972-fe36-491f-abc6-3fad36dd8406" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-01-11T15:24:18.5138315-08:00\",\r\n \"endTime\": \"2022-01-11T15:24:22.4825617-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67f421a8-6fb4-4bd8-98f5-b97621c28e8a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;248,Microsoft.Compute/GetDedicatedHost30Min;996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6ebc04c-3d50-4ec7-b7c1-128f4066f98f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "775d2c51-193a-4a0b-ac10-e7e9d041e606" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232449Z:775d2c51-193a-4a0b-ac10-e7e9d041e606" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "694" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:17Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"platformFaultDomain\": 0,\r\n \"autoReplaceOnFailure\": true,\r\n \"hostId\": \"5d1a2271-2213-4dbd-a9ed-b2965b0f3d10\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-01-11T15:24:22.295086-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-01-11T15:24:18.5763455-08:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ced50331-722c-456b-bc6b-1ae07e1c2095" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;247,Microsoft.Compute/GetDedicatedHost30Min;995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74328da3-ebc6-419a-89b0-928c7d2a570f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "bcda5ae8-75b7-42c2-876c-0db0087f4fef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232449Z:bcda5ae8-75b7-42c2-876c-0db0087f4fef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "694" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"crptestar5957DH\": \"2022-01-11 23:24:17Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"platformFaultDomain\": 0,\r\n \"autoReplaceOnFailure\": true,\r\n \"hostId\": \"5d1a2271-2213-4dbd-a9ed-b2965b0f3d10\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-01-11T15:24:22.295086-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-01-11T15:24:18.5763455-08:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1?$expand=instanceView&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT8kZXhwYW5kPWluc3RhbmNlVmlldyZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9adf4cdb-be05-4932-9902-8a52e1ae189f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7da6801-80bc-484e-b4e3-47068d36df0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "151d3f91-c227-4ed0-aab8-84020faac916" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232449Z:151d3f91-c227-4ed0-aab8-84020faac916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "3118" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/CRPTESTAR5957DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"hosts\": [\r\n {\r\n \"id\": \"/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/CRPTESTAR5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\"\r\n }\r\n ],\r\n \"supportAutomaticPlacement\": true,\r\n \"instanceView\": {\r\n \"hosts\": [\r\n {\r\n \"name\": \"DH-1\",\r\n \"assetId\": \"76e318c7-751f-41b8-822e-18a5e8971601\",\r\n \"availableCapacity\": {\r\n \"allocatableVMs\": [\r\n {\r\n \"vmSize\": \"Standard_E2s_v3\",\r\n \"count\": 28\r\n },\r\n {\r\n \"vmSize\": \"Standard_E4-2s_v3\",\r\n \"count\": 14\r\n },\r\n {\r\n \"vmSize\": \"Standard_E4s_v3\",\r\n \"count\": 14\r\n },\r\n {\r\n \"vmSize\": \"Standard_E8-2s_v3\",\r\n \"count\": 7\r\n },\r\n {\r\n \"vmSize\": \"Standard_E8-4s_v3\",\r\n \"count\": 7\r\n },\r\n {\r\n \"vmSize\": \"Standard_E8s_v3\",\r\n \"count\": 7\r\n },\r\n {\r\n \"vmSize\": \"Standard_E16-4s_v3\",\r\n \"count\": 3\r\n },\r\n {\r\n \"vmSize\": \"Standard_E16-8s_v3\",\r\n \"count\": 3\r\n },\r\n {\r\n \"vmSize\": \"Standard_E16s_v3\",\r\n \"count\": 3\r\n },\r\n {\r\n \"vmSize\": \"Standard_E20s_v3\",\r\n \"count\": 2\r\n },\r\n {\r\n \"vmSize\": \"Standard_E32-8s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E32-16s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E32s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E48s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E64-16s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E64-32s_v3\",\r\n \"count\": 1\r\n },\r\n {\r\n \"vmSize\": \"Standard_E64s_v3\",\r\n \"count\": 1\r\n }\r\n ]\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-01-11T15:24:22.310714-08:00\"\r\n },\r\n {\r\n \"code\": \"HealthState/available\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Host available\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1/restart?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xL3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de167f17-de93-4471-bb37-318e6e0ed6e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e149a5f3-0921-4a5e-b5d0-fc7d0ece59fb?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateDedicatedHost3Min;119,Microsoft.Compute/UpdateDedicatedHost30Min;599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e149a5f3-0921-4a5e-b5d0-fc7d0ece59fb" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "10435a1c-0221-4546-bc9c-964c454eca1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232450Z:10435a1c-0221-4546-bc9c-964c454eca1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c3054a1-d12f-4042-8cb8-d3d631e7b27e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:24:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f?p=824da08b-c813-4ec7-b7de-7d1a26d29290&monitor=true&api-version=2021-11-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;117,Microsoft.Compute/PutDeleteDedicatedHost30Min;597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "8f0b8a4e-379a-4872-b65b-97c9e7f29aae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232450Z:8f0b8a4e-379a-4872-b65b-97c9e7f29aae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2UzZDJlNmI2LTFjM2QtNGM3Yy1iNGEzLTUwZjA5MTk0ZTgzZj9wPTgyNGRhMDhiLWM4MTMtNGVjNy1iN2RlLTdkMWEyNmQyOTI5MCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:25:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88a0b005-a540-4d4b-ab6c-47d42c18170f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8dfdf62a-5ca3-43e6-9432-b555410cf81d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232520Z:8dfdf62a-5ca3-43e6-9432-b555410cf81d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-01-11T15:24:50.3265451-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f?p=824da08b-c813-4ec7-b7de-7d1a26d29290&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2UzZDJlNmI2LTFjM2QtNGM3Yy1iNGEzLTUwZjA5MTk0ZTgzZj9wPTgyNGRhMDhiLWM4MTMtNGVjNy1iN2RlLTdkMWEyNmQyOTI5MCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:25:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e18988b1-54a5-428f-b0f0-b03f98060c18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "3fdf8372-0605-4b46-bb60-26c7424c7760" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232550Z:3fdf8372-0605-4b46-bb60-26c7424c7760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-01-11T15:24:50.3265451-08:00\",\r\n \"endTime\": \"2022-01-11T15:25:20.5610764-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e3d2e6b6-1c3d-4c7c-b4a3-50f09194e83f?p=824da08b-c813-4ec7-b7de-7d1a26d29290&monitor=true&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2UzZDJlNmI2LTFjM2QtNGM3Yy1iNGEzLTUwZjA5MTk0ZTgzZj9wPTgyNGRhMDhiLWM4MTMtNGVjNy1iN2RlLTdkMWEyNmQyOTI5MCZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:25:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac67703a-1714-4dfb-9230-099647359c29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "20722376-d20e-404d-a5ca-619aa3c08627" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232550Z:20722376-d20e-404d-a5ca-619aa3c08627" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourceGroups/crptestar5957DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5NTdESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d3ad570-a684-4c0a-a7ca-3c57e2a555e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:25:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;116,Microsoft.Compute/PutDeleteDedicatedHost30Min;596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "deb2668e-13a5-4ddd-a9e5-0745f30a25d3" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "e0dd8fc6-c10b-4d7b-afa7-30d43eba21de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232552Z:e0dd8fc6-c10b-4d7b-afa7-30d43eba21de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/resourcegroups/crptestar5957DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU5NTdESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93599100-3382-495f-9cbe-eb3305f2d370" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:25:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTU3REgtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "cfec04d9-6f78-4a07-9dc5-1ede0852f8c8" + ], + "x-ms-correlation-request-id": [ + "cfec04d9-6f78-4a07-9dc5-1ede0852f8c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232554Z:cfec04d9-6f78-4a07-9dc5-1ede0852f8c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTU3REgtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RVM1JFZ3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:26:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b0605d8f-156e-4866-93f5-49654d3e8a00" + ], + "x-ms-correlation-request-id": [ + "b0605d8f-156e-4866-93f5-49654d3e8a00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232609Z:b0605d8f-156e-4866-93f5-49654d3e8a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9c03b4c8-9b99-408a-bdee-3ef8a967e304/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTU3REgtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWMwM2I0YzgtOWI5OS00MDhhLWJkZWUtM2VmOGE5NjdlMzA0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RVM1JFZ3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 11 Jan 2022 23:26:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2d9793fa-127c-4ed7-92a7-091ce2cfe535" + ], + "x-ms-correlation-request-id": [ + "2d9793fa-127c-4ed7-92a7-091ce2cfe535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220111T232609Z:2d9793fa-127c-4ed7-92a7-091ce2cfe535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "TestDedicatedHostRestart": [ + "crptestar5957" + ] + }, + "Variables": { + "SubscriptionId": "9c03b4c8-9b99-408a-bdee-3ef8a967e304" + } +} \ No newline at end of file