From 661f8cc72d0b353519082bdc392e7ba7d6d80f90 Mon Sep 17 00:00:00 2001 From: hari-bodicherla <43284966+hari-bodicherla@users.noreply.github.com> Date: Mon, 18 Apr 2022 12:45:25 -0700 Subject: [PATCH] Generated SDK modules and recorded tests for UltraSSDCapability property in Dedicated Hosts for API version 2022-03-01 Compute #27949 (#27984) * generated * updated code Co-authored-by: Theodore Chang --- .../Generated/Models/DedicatedHostGroup.cs | 14 +- ...stGroupPropertiesAdditionalCapabilities.cs | 75 ++ .../Models/DedicatedHostGroupUpdate.cs | 14 +- .../Microsoft.Azure.Management.Compute.csproj | 2 +- .../src/Properties/AssemblyInfo.cs | 4 +- .../tests/ScenarioTests/DedicatedHostTests.cs | 13 +- .../tests/ScenarioTests/VMTestBase.cs | 8 +- .../TestDedicatedHostOperations.json | 867 +++++++++++++----- 8 files changed, 771 insertions(+), 226 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupPropertiesAdditionalCapabilities.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs index bb23e586e178..c2bc283f5111 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs @@ -57,18 +57,22 @@ public DedicatedHostGroup() /// the dedicated host group. The value is defaulted to 'false' when /// not provided. <br><br>Minimum api-version: /// 2020-06-01. + /// Enables or disables a + /// capability on the dedicated host group.<br><br>Minimum + /// api-version: 2022-03-01. /// Availability Zone to use for this host group. /// Only single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the /// same zone. - public DedicatedHostGroup(string location, int platformFaultDomainCount, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList hosts = default(IList), DedicatedHostGroupInstanceView instanceView = default(DedicatedHostGroupInstanceView), bool? supportAutomaticPlacement = default(bool?), IList zones = default(IList)) + public DedicatedHostGroup(string location, int platformFaultDomainCount, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList hosts = default(IList), DedicatedHostGroupInstanceView instanceView = default(DedicatedHostGroupInstanceView), bool? supportAutomaticPlacement = default(bool?), DedicatedHostGroupPropertiesAdditionalCapabilities additionalCapabilities = default(DedicatedHostGroupPropertiesAdditionalCapabilities), IList zones = default(IList)) : base(location, id, name, type, tags) { PlatformFaultDomainCount = platformFaultDomainCount; Hosts = hosts; InstanceView = instanceView; SupportAutomaticPlacement = supportAutomaticPlacement; + AdditionalCapabilities = additionalCapabilities; Zones = zones; CustomInit(); } @@ -111,6 +115,14 @@ public DedicatedHostGroup() [JsonProperty(PropertyName = "properties.supportAutomaticPlacement")] public bool? SupportAutomaticPlacement { get; set; } + /// + /// Gets or sets enables or disables a capability on the dedicated host + /// group.&lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2022-03-01. + /// + [JsonProperty(PropertyName = "properties.additionalCapabilities")] + public DedicatedHostGroupPropertiesAdditionalCapabilities AdditionalCapabilities { get; set; } + /// /// Gets or sets availability Zone to use for this host group. Only /// single zone is supported. The zone can be assigned only during diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupPropertiesAdditionalCapabilities.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupPropertiesAdditionalCapabilities.cs new file mode 100644 index 000000000000..7fb71fbe33e3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupPropertiesAdditionalCapabilities.cs @@ -0,0 +1,75 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// 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.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Enables or disables a capability on the dedicated host + /// group.<br><br>Minimum api-version: 2022-03-01. + /// + public partial class DedicatedHostGroupPropertiesAdditionalCapabilities + { + /// + /// Initializes a new instance of the + /// DedicatedHostGroupPropertiesAdditionalCapabilities class. + /// + public DedicatedHostGroupPropertiesAdditionalCapabilities() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// DedicatedHostGroupPropertiesAdditionalCapabilities class. + /// + /// The flag that enables or disables a + /// capability to have UltraSSD Enabled Virtual Machines on Dedicated + /// Hosts of the Dedicated Host Group. For the Virtual Machines to be + /// UltraSSD Enabled, UltraSSDEnabled flag for the resoure needs to be + /// set true as well. The value is defaulted to 'false' when not + /// provided. Please refer to + /// https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd + /// for more details on Ultra SSD feature. <br><br>NOTE: + /// The ultraSSDEnabled setting can only be enabled for Host Groups + /// that are created as zonal. <br><br>Minimum api-version: + /// 2022-03-01. + public DedicatedHostGroupPropertiesAdditionalCapabilities(bool? ultraSSDEnabled = default(bool?)) + { + UltraSSDEnabled = ultraSSDEnabled; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the flag that enables or disables a capability to have + /// UltraSSD Enabled Virtual Machines on Dedicated Hosts of the + /// Dedicated Host Group. For the Virtual Machines to be UltraSSD + /// Enabled, UltraSSDEnabled flag for the resoure needs to be set true + /// as well. The value is defaulted to 'false' when not provided. + /// Please refer to + /// https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd + /// for more details on Ultra SSD feature. + /// &lt;br&gt;&lt;br&gt;NOTE: The ultraSSDEnabled + /// setting can only be enabled for Host Groups that are created as + /// zonal. &lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2022-03-01. + /// + [JsonProperty(PropertyName = "ultraSSDEnabled")] + public bool? UltraSSDEnabled { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs index cdd31b9d1d48..ba52848d7a18 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs @@ -50,18 +50,22 @@ public DedicatedHostGroupUpdate() /// the dedicated host group. The value is defaulted to 'false' when /// not provided. <br><br>Minimum api-version: /// 2020-06-01. + /// Enables or disables a + /// capability on the dedicated host group.<br><br>Minimum + /// api-version: 2022-03-01. /// Availability Zone to use for this host group. /// Only single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the /// same zone. - public DedicatedHostGroupUpdate(int platformFaultDomainCount, IDictionary tags = default(IDictionary), IList hosts = default(IList), DedicatedHostGroupInstanceView instanceView = default(DedicatedHostGroupInstanceView), bool? supportAutomaticPlacement = default(bool?), IList zones = default(IList)) + public DedicatedHostGroupUpdate(int platformFaultDomainCount, IDictionary tags = default(IDictionary), IList hosts = default(IList), DedicatedHostGroupInstanceView instanceView = default(DedicatedHostGroupInstanceView), bool? supportAutomaticPlacement = default(bool?), DedicatedHostGroupPropertiesAdditionalCapabilities additionalCapabilities = default(DedicatedHostGroupPropertiesAdditionalCapabilities), IList zones = default(IList)) : base(tags) { PlatformFaultDomainCount = platformFaultDomainCount; Hosts = hosts; InstanceView = instanceView; SupportAutomaticPlacement = supportAutomaticPlacement; + AdditionalCapabilities = additionalCapabilities; Zones = zones; CustomInit(); } @@ -104,6 +108,14 @@ public DedicatedHostGroupUpdate() [JsonProperty(PropertyName = "properties.supportAutomaticPlacement")] public bool? SupportAutomaticPlacement { get; set; } + /// + /// Gets or sets enables or disables a capability on the dedicated host + /// group.&lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2022-03-01. + /// + [JsonProperty(PropertyName = "properties.additionalCapabilities")] + public DedicatedHostGroupPropertiesAdditionalCapabilities AdditionalCapabilities { get; set; } + /// /// Gets or sets availability Zone to use for this host group. Only /// single zone is supported. The zone can be assigned only during diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index a52a7b8023b7..659999b00e95 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -9,7 +9,7 @@ Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 53.0.0 + 54.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index 5ec452df328e..599becf1b981 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("53.0.0")] -[assembly: AssemblyFileVersion("53.0.0")] +[assembly: AssemblyVersion("54.0.0")] +[assembly: AssemblyFileVersion("54.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] 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 0ff5a110a2a6..1a1f1e050ed7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs @@ -30,6 +30,7 @@ public void TestDedicatedHostOperations() string baseRGName = ComputeManagementTestUtilities.GenerateName(TestPrefix); string rgName = baseRGName + "DH"; string dhgName = "DHG-1"; + string dhgWithUltraSSDName = "DHG-UltraSSD-1"; string dhName = "DH-1"; try @@ -64,7 +65,7 @@ public void TestDedicatedHostOperations() var createdDH = CreateDedicatedHost(rgName, dhgName, dhName, "ESv3-Type1"); var returnedDH = m_CrpClient.DedicatedHosts.Get(rgName, dhgName, dhName); ValidateDedicatedHost(createdDH, returnedDH); - + //List DedicatedHosts var listDHsResponse = m_CrpClient.DedicatedHosts.ListByHostGroup(rgName, dhgName); Assert.Single(listDHsResponse); @@ -74,6 +75,10 @@ public void TestDedicatedHostOperations() m_CrpClient.DedicatedHosts.Delete(rgName, dhgName, dhName); m_CrpClient.DedicatedHostGroups.Delete(rgName, dhgName); + // Create a dedicated host group with ultraSSDCapabilty set to true, then get the dedicated host group and validate that they match + createdDHG = CreateDedicatedHostGroup(rgName, dhgWithUltraSSDName, ultraSSDCapability: true); + returnedDHG = m_CrpClient.DedicatedHostGroups.Get(rgName, dhgWithUltraSSDName); + ValidateDedicatedHostGroup(createdDHG, returnedDHG); } finally { @@ -192,6 +197,12 @@ private void ValidateDedicatedHostGroup(DedicatedHostGroup expectedDHG, Dedicate Assert.Equal(expectedDHG.Location, actualDHG.Location); Assert.Equal(expectedDHG.Name, actualDHG.Name); Assert.Equal(expectedDHG.SupportAutomaticPlacement, actualDHG.SupportAutomaticPlacement); + + if(expectedDHG.AdditionalCapabilities != null) + { + Assert.NotNull(actualDHG.AdditionalCapabilities); + Assert.Equal(expectedDHG.AdditionalCapabilities.UltraSSDEnabled, actualDHG.AdditionalCapabilities.UltraSSDEnabled); + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs index 8fd54cdbd966..bcea8ad1ba71 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs @@ -1027,7 +1027,7 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou return vm; } - protected DedicatedHostGroup CreateDedicatedHostGroup( string rgName, string dedicatedHostGroupName, int? availabilityZone = 1) + protected DedicatedHostGroup CreateDedicatedHostGroup(string rgName, string dedicatedHostGroupName, int? availabilityZone = 1, bool ultraSSDCapability = false) { m_ResourcesClient.ResourceGroups.CreateOrUpdate( rgName, @@ -1042,7 +1042,11 @@ protected DedicatedHostGroup CreateDedicatedHostGroup( string rgName, string ded Location = m_location, Zones = availabilityZone == null ? null : new List { availabilityZone.ToString() }, PlatformFaultDomainCount = 1, - SupportAutomaticPlacement = true + SupportAutomaticPlacement = true, + AdditionalCapabilities = new DedicatedHostGroupPropertiesAdditionalCapabilities + { + UltraSSDEnabled = ultraSSDCapability + } }; return m_CrpClient.DedicatedHostGroups.CreateOrUpdate(rgName, dedicatedHostGroupName, dedicatedHostGroup); } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostOperations.json index ecfe06419685..7ba130b47f24 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostOperations.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DedicatedHostTests/TestDedicatedHostOperations.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar1628DH?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2MjhESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar8512DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjg1MTJESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:56Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:46Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e8d025c9-1028-4b89-8787-37fb644aefc1" + "1f188a63-e0e6-40f8-a3f3-2530e8137901" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "fa6ba343-bdc5-4a44-b6f1-9b5df5297bc3" + "58c9f8e5-c685-455d-bde9-b57061969c2f" ], "x-ms-correlation-request-id": [ - "fa6ba343-bdc5-4a44-b6f1-9b5df5297bc3" + "58c9f8e5-c685-455d-bde9-b57061969c2f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100457Z:fa6ba343-bdc5-4a44-b6f1-9b5df5297bc3" + "WESTUS2:20220405T024347Z:58c9f8e5-c685-455d-bde9-b57061969c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:56 GMT" + "Tue, 05 Apr 2022 02:43:47 GMT" ], "Content-Length": [ "234" @@ -63,32 +63,98 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH\",\r\n \"name\": \"crptestar1628DH\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:56Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH\",\r\n \"name\": \"crptestar8512DH\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar8512DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjg1MTJESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:44:58Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e77ea692-6774-44dc-bfb7-80947a40b035" + "5ccb7170-b3ab-4d1c-ac0f-7465418b4e89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d9565d22-9ec1-4115-aca3-52042b579d27" + ], + "x-ms-correlation-request-id": [ + "d9565d22-9ec1-4115-aca3-52042b579d27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024459Z:d9565d22-9ec1-4115-aca3-52042b579d27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:44:58 GMT" + ], + "Content-Length": [ + "234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH\",\r\n \"name\": \"crptestar8512DH\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:44:58Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "993d866e-e1dd-408c-a343-b7f73305421f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "158" + "231" ] }, "ResponseHeaders": { @@ -105,7 +171,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8539e04-39a1-4e06-8879-c2464d52a6e0" + "0ee240c6-7721-4adb-9198-66ddd1b734e1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -115,19 +181,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "25d15553-425d-4c47-96d4-33ea38ba9a3a" + "651fc73f-bf61-4faf-891c-b1ec64fa706d" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100458Z:25d15553-425d-4c47-96d4-33ea38ba9a3a" + "WESTUS2:20220405T024351Z:651fc73f-bf61-4faf-891c-b1ec64fa706d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:57 GMT" + "Tue, 05 Apr 2022 02:43:51 GMT" ], "Content-Length": [ - "361" + "434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,25 +202,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d33f1483-59c4-4112-8bc5-74766ec7fff3" + "cc06068e-5367-4273-a28f-68effa51c4f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -166,13 +232,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost30Min;979" + "Microsoft.Compute/GetDedicatedHost30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b034727f-fca0-4e8a-a1d8-6d708c2a9a8f" + "011419e8-44d3-4f92-b5e4-ea46eec214af" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -182,19 +248,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "7971c2b8-c307-4bcb-b0fc-da1f8200f8a3" + "0e86a729-2f70-475e-9b2b-56d3a9566323" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100458Z:7971c2b8-c307-4bcb-b0fc-da1f8200f8a3" + "WESTUS2:20220405T024351Z:0e86a729-2f70-475e-9b2b-56d3a9566323" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:57 GMT" + "Tue, 05 Apr 2022 02:43:51 GMT" ], "Content-Length": [ - "361" + "434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -203,25 +269,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c599f90-3201-45ab-98c7-b1620ef00b70" + "fcfbae90-85a9-4b63-b081-38b0f8f1c138" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -233,13 +299,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost30Min;978" + "Microsoft.Compute/GetDedicatedHost30Min;998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdfbaade-27a6-453a-a98b-8be5e7479efc" + "20415023-add6-4227-bed1-0aa8d75000a2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,19 +315,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "82ab7411-95a8-4ab5-b9e7-f90baae86a2f" + "48a03ac6-56ce-400b-926a-817673e0bd5d" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100459Z:82ab7411-95a8-4ab5-b9e7-f90baae86a2f" + "WESTUS2:20220405T024353Z:48a03ac6-56ce-400b-926a-817673e0bd5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:58 GMT" + "Tue, 05 Apr 2022 02:43:53 GMT" ], "Content-Length": [ - "408" + "481" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,25 +336,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e10de6-73b0-4684-8d24-b81e8432943b" + "ebc5f7b5-a9e6-4cd0-9235-a327106d093a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ @@ -312,7 +378,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b10529d-2069-4df6-99ba-26beab0779e7" + "e99c0307-85ca-4b27-b337-613a7ac2e49c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -322,19 +388,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "1ea70c26-81a6-4f05-a6c1-629ad198a5ad" + "4f994ba0-44c1-4da0-a7a9-eb80a1c69c09" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100458Z:1ea70c26-81a6-4f05-a6c1-629ad198a5ad" + "WESTUS2:20220405T024352Z:4f994ba0-44c1-4da0-a7a9-eb80a1c69c09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:57 GMT" + "Tue, 05 Apr 2022 02:43:52 GMT" ], "Content-Length": [ - "408" + "481" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,25 +409,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748a0198-cdef-43ea-b77f-4bd8685c7790" + "e7e5b05c-16bc-4776-a807-6270d7658c5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -373,13 +439,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost3Min;198" + "Microsoft.Compute/GetDedicatedHost3Min;199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c77f664-da78-45c6-b1ad-8af7b1f02f4e" + "39739597-40e7-46e8-8638-d312dd8ff2d1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -389,19 +455,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "c2a5ec37-9054-4a9b-bb1c-280d37b70fca" + "fbf72ed6-5abe-46ec-912e-92f7831d8650" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100458Z:c2a5ec37-9054-4a9b-bb1c-280d37b70fca" + "WESTUS2:20220405T024353Z:fbf72ed6-5abe-46ec-912e-92f7831d8650" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:58 GMT" + "Tue, 05 Apr 2022 02:43:52 GMT" ], "Content-Length": [ - "497" + "582" ], "Content-Type": [ "application/json; charset=utf-8" @@ -410,25 +476,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/hostGroups?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9ob3N0R3JvdXBzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/hostGroups?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9ob3N0R3JvdXBzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "298578b0-98eb-47b8-b0b2-4bf1affe5773" + "4ddb75aa-6b5f-4537-9ec2-48d607c2a211" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -439,63 +505,60 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost3Min;197" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ca08848f-bfce-43c3-9e46-3c74674ebe44" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-original-request-ids": [ + "6b829b09-dbc1-4dbc-ae23-3577bf280adc", + "b70e0fdf-b6db-45e0-8172-9048daa297c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-request-id": [ + "bffd81bc-d2a4-4f9e-bc70-e3256b9bbdbf" + ], "x-ms-correlation-request-id": [ - "a7e2d3d0-a89f-4d65-a085-d66e2a45fe91" + "bffd81bc-d2a4-4f9e-bc70-e3256b9bbdbf" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100458Z:a7e2d3d0-a89f-4d65-a085-d66e2a45fe91" + "WESTUS2:20220405T024353Z:bffd81bc-d2a4-4f9e-bc70-e3256b9bbdbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:58 GMT" - ], - "Content-Length": [ - "497" + "Tue, 05 Apr 2022 02:43:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "689" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DHG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ckNonultra\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CKTEST/providers/Microsoft.Compute/hostGroups/ckNonultra\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:59Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:53Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3873ea2d-c4ac-418b-9ae5-7dd729663e0c" + "a2e70995-b9ae-4a87-9f6d-43f76edd6c9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ @@ -513,7 +576,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/1263443f-338f-427c-8681-19945bea8d5c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/922f95de-6992-4535-9077-81c0cc349a08?p=a81447b3-0afd-477b-992c-79c1ac93250d&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -525,7 +588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1263443f-338f-427c-8681-19945bea8d5c" + "922f95de-6992-4535-9077-81c0cc349a08" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,16 +598,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "43c75a00-ecf7-4e09-b905-f53d55ce2965" + "034c0cbb-19ad-4cb8-9839-3d401460f84a" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100500Z:43c75a00-ecf7-4e09-b905-f53d55ce2965" + "WESTUS2:20220405T024355Z:034c0cbb-19ad-4cb8-9839-3d401460f84a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:04:59 GMT" + "Tue, 05 Apr 2022 02:43:55 GMT" ], "Content-Length": [ "598" @@ -556,19 +619,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:59Z\"\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\": \"eef8d587-90d5-46ac-8858-fe4b6dc1ce1e\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-06T10:04:59.8308964+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:53Z\"\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\": \"a32b4989-1413-4770-8018-6b2d14857055\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-04T19:43:54.7582219-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/1263443f-338f-427c-8681-19945bea8d5c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEyNjM0NDNmLTMzOGYtNDI3Yy04NjgxLTE5OTQ1YmVhOGQ1Yz9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/922f95de-6992-4535-9077-81c0cc349a08?p=a81447b3-0afd-477b-992c-79c1ac93250d&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzkyMmY5NWRlLTY5OTItNDUzNS05MDc3LTgxYzBjYzM0OWEwOD9wPWE4MTQ0N2IzLTBhZmQtNDc3Yi05OTJjLTc5YzFhYzkzMjUwZCZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -580,13 +643,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "681bdb6c-91ed-4ecb-977e-3667ce80b303" + "e9b534cc-5cf9-4bf4-af8f-0169d94887ee" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -596,19 +659,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "3200c560-1090-4363-a208-e2f0d9c54655" + "07fb8bda-f58f-402f-9dca-6faa8dddb943" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100530Z:3200c560-1090-4363-a208-e2f0d9c54655" + "WESTUS2:20220405T024425Z:07fb8bda-f58f-402f-9dca-6faa8dddb943" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:05:30 GMT" + "Tue, 05 Apr 2022 02:44:25 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -617,19 +680,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T10:04:59.8159931+00:00\",\r\n \"endTime\": \"2022-04-06T10:05:00.409061+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1263443f-338f-427c-8681-19945bea8d5c\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-04T19:43:54.6800416-07:00\",\r\n \"endTime\": \"2022-04-04T19:43:56.2894933-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"922f95de-6992-4535-9077-81c0cc349a08\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -641,13 +704,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost3Min;195,Microsoft.Compute/GetDedicatedHost30Min;977" + "Microsoft.Compute/GetDedicatedHost3Min;196,Microsoft.Compute/GetDedicatedHost30Min;996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81a5ad9f-9a70-4955-9df4-2895a03608ec" + "6c1408bf-c7bf-4296-a3ed-0734e8eb4ac9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -657,16 +720,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "fe18e278-346c-4801-8e6d-a54372274193" + "a06710b6-bf2c-4d9a-8cbe-18b6058adc4f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100530Z:fe18e278-346c-4801-8e6d-a54372274193" + "WESTUS2:20220405T024425Z:a06710b6-bf2c-4d9a-8cbe-18b6058adc4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:05:30 GMT" + "Tue, 05 Apr 2022 02:44:25 GMT" ], "Content-Length": [ "689" @@ -678,25 +741,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:59Z\"\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\": \"eef8d587-90d5-46ac-8858-fe4b6dc1ce1e\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-06T10:05:00.2215332+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-06T10:04:59.8308964+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:53Z\"\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\": \"a32b4989-1413-4770-8018-6b2d14857055\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-04T19:43:55.4769465-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-04T19:43:54.7582219-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa04237a-ab9e-4de1-af6e-a87b6c600b66" + "d805901a-7f7e-46ec-958f-c4ab65aae5a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -708,13 +771,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost3Min;194,Microsoft.Compute/GetDedicatedHost30Min;976" + "Microsoft.Compute/GetDedicatedHost3Min;195,Microsoft.Compute/GetDedicatedHost30Min;995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e49506f-5776-4349-bba3-b306c2783b25" + "7ceab8eb-d6a5-42b6-accb-596ea20e92d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -724,16 +787,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "c6080efb-0ebe-4906-baeb-2eb62f6c7a14" + "5598d0e4-46f7-460f-b80e-552c9d4d4e85" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100530Z:c6080efb-0ebe-4906-baeb-2eb62f6c7a14" + "WESTUS2:20220405T024426Z:5598d0e4-46f7-460f-b80e-552c9d4d4e85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:05:30 GMT" + "Tue, 05 Apr 2022 02:44:25 GMT" ], "Content-Length": [ "689" @@ -745,25 +808,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:59Z\"\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\": \"eef8d587-90d5-46ac-8858-fe4b6dc1ce1e\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-06T10:05:00.2215332+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-06T10:04:59.8308964+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:53Z\"\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\": \"a32b4989-1413-4770-8018-6b2d14857055\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-04T19:43:55.4769465-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-04T19:43:54.7582219-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e836ff5-4b62-4608-9c8d-9afeac1ad436" + "f8c1b1f2-31fd-44a4-befd-6123b88d6883" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -775,13 +838,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetDedicatedHost3Min;193,Microsoft.Compute/GetDedicatedHost30Min;975" + "Microsoft.Compute/GetDedicatedHost3Min;194,Microsoft.Compute/GetDedicatedHost30Min;994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2111b0e7-3fb8-438b-bed8-c9297fa5c7d3" + "a907b93f-bcfd-4bac-af88-258120d55376" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -791,16 +854,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "9b0c60e3-303d-4628-b2ab-92b9ae66c8fd" + "f793cdcf-ab53-44d6-b84b-5a20adc7b42f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100530Z:9b0c60e3-303d-4628-b2ab-92b9ae66c8fd" + "WESTUS2:20220405T024426Z:f793cdcf-ab53-44d6-b84b-5a20adc7b42f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:05:30 GMT" + "Tue, 05 Apr 2022 02:44:25 GMT" ], "Content-Length": [ "798" @@ -812,25 +875,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1628DH\": \"2022-04-06 10:04:59Z\"\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\": \"eef8d587-90d5-46ac-8858-fe4b6dc1ce1e\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-06T10:05:00.2215332+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-06T10:04:59.8308964+00:00\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"DH-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups/hosts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar8512DH\": \"2022-04-05 02:43:53Z\"\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\": \"a32b4989-1413-4770-8018-6b2d14857055\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2022-04-04T19:43:55.4769465-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-04T19:43:54.7582219-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMjItMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc4aab35-4ddc-4b1a-b3a3-82f57c452760" + "1ab7cb5d-b154-492f-836d-07e4bf8be73d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -842,10 +905,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/4f8178b2-4992-4aa0-a288-0154a0244831?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/0a1d5f8c-bd68-48f3-86d4-97545e69544e?p=a81447b3-0afd-477b-992c-79c1ac93250d&monitor=true&api-version=2022-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/4f8178b2-4992-4aa0-a288-0154a0244831?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/0a1d5f8c-bd68-48f3-86d4-97545e69544e?p=a81447b3-0afd-477b-992c-79c1ac93250d&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -857,7 +920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f8178b2-4992-4aa0-a288-0154a0244831" + "0a1d5f8c-bd68-48f3-86d4-97545e69544e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -867,16 +930,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "7a7ff4e5-9910-4a61-895f-e24bd365e3b7" + "8e71bb0b-4433-4e62-9c7e-20515d96820d" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100531Z:7a7ff4e5-9910-4a61-895f-e24bd365e3b7" + "WESTUS2:20220405T024426Z:8e71bb0b-4433-4e62-9c7e-20515d96820d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:05:30 GMT" + "Tue, 05 Apr 2022 02:44:26 GMT" ], "Expires": [ "-1" @@ -889,15 +952,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/4f8178b2-4992-4aa0-a288-0154a0244831?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRmODE3OGIyLTQ5OTItNGFhMC1hMjg4LTAxNTRhMDI0NDgzMT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/0a1d5f8c-bd68-48f3-86d4-97545e69544e?p=a81447b3-0afd-477b-992c-79c1ac93250d&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzBhMWQ1ZjhjLWJkNjgtNDhmMy04NmQ0LTk3NTQ1ZTY5NTQ0ZT9wPWE4MTQ0N2IzLTBhZmQtNDc3Yi05OTJjLTc5YzFhYzkzMjUwZCZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -909,13 +972,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "370c92dd-4953-4c42-be81-834a07ad725d" + "13470f6a-1f65-4f55-b5e7-92dae2196005" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -925,16 +988,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "63830318-a2b4-4ac4-8a40-2ea66c84f79d" + "879cf0e4-58b0-4a07-83df-4151f60047bd" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100601Z:63830318-a2b4-4ac4-8a40-2ea66c84f79d" + "WESTUS2:20220405T024456Z:879cf0e4-58b0-4a07-83df-4151f60047bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:01 GMT" + "Tue, 05 Apr 2022 02:44:56 GMT" ], "Content-Length": [ "184" @@ -946,19 +1009,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T10:05:31.0354021+00:00\",\r\n \"endTime\": \"2022-04-06T10:05:31.1447796+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f8178b2-4992-4aa0-a288-0154a0244831\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-04T19:44:26.6968138-07:00\",\r\n \"endTime\": \"2022-04-04T19:44:26.8530737-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0a1d5f8c-bd68-48f3-86d4-97545e69544e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/4f8178b2-4992-4aa0-a288-0154a0244831?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRmODE3OGIyLTQ5OTItNGFhMC1hMjg4LTAxNTRhMDI0NDgzMT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/eastus2/operations/0a1d5f8c-bd68-48f3-86d4-97545e69544e?p=a81447b3-0afd-477b-992c-79c1ac93250d&monitor=true&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzBhMWQ1ZjhjLWJkNjgtNDhmMy04NmQ0LTk3NTQ1ZTY5NTQ0ZT9wPWE4MTQ0N2IzLTBhZmQtNDc3Yi05OTJjLTc5YzFhYzkzMjUwZCZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -970,13 +1033,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95442009-3a0a-4bf3-89f7-4413a0c9d1a9" + "b5fbeb75-4d89-4b9e-8b32-ded7edf381b8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -986,16 +1049,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "9cbe54a1-c886-4765-aa26-cce04981b179" + "8b435a4a-5f42-420e-a91a-4b17b1502db8" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100601Z:9cbe54a1-c886-4765-aa26-cce04981b179" + "WESTUS2:20220405T024457Z:8b435a4a-5f42-420e-a91a-4b17b1502db8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:01 GMT" + "Tue, 05 Apr 2022 02:44:56 GMT" ], "Expires": [ "-1" @@ -1008,21 +1071,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar1628DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MjhESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f175b1da-6849-4b59-8553-73c19d58091a" + "c2970f29-7604-4eaa-bd76-715bf23ab3a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, @@ -1040,7 +1103,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43a7b88d-43f4-4315-8374-d52ee90d74ce" + "77e268c1-3210-4d40-a61a-6d43c9ddc61c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1050,16 +1113,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "883e01b1-1f9c-40c9-8ef7-a7294d5b8412" + "38cfbfbc-e4b8-4a8b-a8a1-8868da5e1088" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100602Z:883e01b1-1f9c-40c9-8ef7-a7294d5b8412" + "WESTUS2:20220405T024458Z:38cfbfbc-e4b8-4a8b-a8a1-8868da5e1088" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:01 GMT" + "Tue, 05 Apr 2022 02:44:57 GMT" ], "Expires": [ "-1" @@ -1072,21 +1135,161 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar1628DH?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2MjhESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-UltraSSD-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctVWx0cmFTU0QtMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": true\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19e98a20-38ee-4da9-9bf1-a4bfa4b45b7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "230" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;114,Microsoft.Compute/PutDeleteDedicatedHost30Min;594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd865059-6152-4e1f-a0d1-cef4e2c827ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "11ef6edc-d19e-43d5-881d-a17c45d9d5ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024500Z:11ef6edc-d19e-43d5-881d-a17c45d9d5ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:44:59 GMT" + ], + "Content-Length": [ + "451" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-UltraSSD-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-UltraSSD-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": true\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar8512DH/providers/Microsoft.Compute/hostGroups/DHG-UltraSSD-1?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1MTJESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctVWx0cmFTU0QtMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5ed632a-9432-4cc4-9b97-720a3718d408" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3de0b4c6-076d-4ef7-8f86-ba1e02e20b48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "520e7e1f-a508-43c0-86fe-260590adc330" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024500Z:520e7e1f-a508-43c0-86fe-260590adc330" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:44:59 GMT" + ], + "Content-Length": [ + "451" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"DHG-UltraSSD-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR8512DH/providers/Microsoft.Compute/hostGroups/DHG-UltraSSD-1\",\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1,\r\n \"supportAutomaticPlacement\": true,\r\n \"additionalCapabilities\": {\r\n \"ultraSSDEnabled\": true\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar8512DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjg1MTJESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38fcae86-0def-439c-b85c-31501fe41afb" + "183769c7-18df-4909-a6f9-f7d31624a827" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1098,7 +1301,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjI4REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1107,13 +1310,13 @@ "14999" ], "x-ms-request-id": [ - "8de6e1f6-1971-496c-b856-3b65535af317" + "bb5314c3-6fd2-4c70-afc1-1d7dc7c0b677" ], "x-ms-correlation-request-id": [ - "8de6e1f6-1971-496c-b856-3b65535af317" + "bb5314c3-6fd2-4c70-afc1-1d7dc7c0b677" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100602Z:8de6e1f6-1971-496c-b856-3b65535af317" + "WESTUS2:20220405T024501Z:bb5314c3-6fd2-4c70-afc1-1d7dc7c0b677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,7 +1325,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:01 GMT" + "Tue, 05 Apr 2022 02:45:01 GMT" ], "Expires": [ "-1" @@ -1135,15 +1338,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjI4REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmpJNFJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1154,17 +1357,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "8d4d27d5-8d2f-4d35-97a4-87f8d25411c5" + "d52ec82b-3a17-468b-bbba-e32e7a97a840" ], "x-ms-correlation-request-id": [ - "8d4d27d5-8d2f-4d35-97a4-87f8d25411c5" + "d52ec82b-3a17-468b-bbba-e32e7a97a840" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100617Z:8d4d27d5-8d2f-4d35-97a4-87f8d25411c5" + "WESTUS2:20220405T024517Z:d52ec82b-3a17-468b-bbba-e32e7a97a840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,7 +1382,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:16 GMT" + "Tue, 05 Apr 2022 02:45:16 GMT" ], "Expires": [ "-1" @@ -1183,18 +1392,18 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjI4REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmpJNFJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1205,17 +1414,239 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "0c3fcf57-6aa2-4fd4-ae05-99ac2a780c4d" + "d13cff49-296f-4787-b5fa-df1b515b013f" + ], + "x-ms-correlation-request-id": [ + "d13cff49-296f-4787-b5fa-df1b515b013f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024532Z:d13cff49-296f-4787-b5fa-df1b515b013f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:45:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "568eb252-1e6d-4a93-b915-67319c849780" + ], + "x-ms-correlation-request-id": [ + "568eb252-1e6d-4a93-b915-67319c849780" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024547Z:568eb252-1e6d-4a93-b915-67319c849780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:45:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7f01386a-2617-44c9-af39-2db71364e7f9" + ], + "x-ms-correlation-request-id": [ + "7f01386a-2617-44c9-af39-2db71364e7f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024602Z:7f01386a-2617-44c9-af39-2db71364e7f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:46:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "25b6709d-4d8d-43b0-9dad-e8b5816a543a" + ], + "x-ms-correlation-request-id": [ + "25b6709d-4d8d-43b0-9dad-e8b5816a543a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20220405T024617Z:25b6709d-4d8d-43b0-9dad-e8b5816a543a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 05 Apr 2022 02:46:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTEyREgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRFeVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "e908005a-32d2-4697-bd06-d75fe36391c0" ], "x-ms-correlation-request-id": [ - "0c3fcf57-6aa2-4fd4-ae05-99ac2a780c4d" + "e908005a-32d2-4697-bd06-d75fe36391c0" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T100617Z:0c3fcf57-6aa2-4fd4-ae05-99ac2a780c4d" + "WESTUS2:20220405T024617Z:e908005a-32d2-4697-bd06-d75fe36391c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1655,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 10:06:16 GMT" + "Tue, 05 Apr 2022 02:46:17 GMT" ], "Expires": [ "-1" @@ -1239,10 +1670,10 @@ ], "Names": { "TestDedicatedHostOperations": [ - "crptestar1628" + "crptestar8512" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "850f02f7-e14c-4fb7-905d-7b98bcae9c7f" } } \ No newline at end of file