diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservation.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservation.cs index d25a1505eb93..96110127f7c3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservation.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservation.cs @@ -49,6 +49,13 @@ public CapacityReservation() /// A unique id generated and assigned to /// the capacity reservation by the platform which does not change /// throughout the lifetime of the resource. + /// Specifies the value of fault + /// domain count that Capacity Reservation supports for requested VM + /// size.<br>NOTE: The fault domain count specified for a + /// resource (like virtual machines scale set) must be less than or + /// equal to this value if it deploys using capacity + /// reservation.<br><br>Minimum api-version: + /// 2022-08-01. /// A list of all virtual /// machine resource ids that are associated with the capacity /// reservation. @@ -68,10 +75,11 @@ public CapacityReservation() /// creation. If not provided, the reservation supports only non-zonal /// deployments. If provided, enforces VM/VMSS using this capacity /// reservation to be in same zone. - public CapacityReservation(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string reservationId = default(string), IList virtualMachinesAssociated = default(IList), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), CapacityReservationInstanceView instanceView = default(CapacityReservationInstanceView), System.DateTime? timeCreated = default(System.DateTime?), IList zones = default(IList)) + public CapacityReservation(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string reservationId = default(string), int? platformFaultDomainCount = default(int?), IList virtualMachinesAssociated = default(IList), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), CapacityReservationInstanceView instanceView = default(CapacityReservationInstanceView), System.DateTime? timeCreated = default(System.DateTime?), IList zones = default(IList)) : base(location, id, name, type, tags) { ReservationId = reservationId; + PlatformFaultDomainCount = platformFaultDomainCount; VirtualMachinesAssociated = virtualMachinesAssociated; ProvisioningTime = provisioningTime; ProvisioningState = provisioningState; @@ -95,6 +103,18 @@ public CapacityReservation() [JsonProperty(PropertyName = "properties.reservationId")] public string ReservationId { get; private set; } + /// + /// Gets specifies the value of fault domain count that Capacity + /// Reservation supports for requested VM size.&lt;br&gt;NOTE: + /// The fault domain count specified for a resource (like virtual + /// machines scale set) must be less than or equal to this value if it + /// deploys using capacity + /// reservation.&lt;br&gt;&lt;br&gt;Minimum + /// api-version: 2022-08-01. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomainCount")] + public int? PlatformFaultDomainCount { get; private set; } + /// /// Gets a list of all virtual machine resource ids that are associated /// with the capacity reservation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUpdate.cs index 8af25f4738fd..7df155d9826c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUpdate.cs @@ -39,6 +39,13 @@ public CapacityReservationUpdate() /// A unique id generated and assigned to /// the capacity reservation by the platform which does not change /// throughout the lifetime of the resource. + /// Specifies the value of fault + /// domain count that Capacity Reservation supports for requested VM + /// size.<br>NOTE: The fault domain count specified for a + /// resource (like virtual machines scale set) must be less than or + /// equal to this value if it deploys using capacity + /// reservation.<br><br>Minimum api-version: + /// 2022-08-01. /// A list of all virtual /// machine resource ids that are associated with the capacity /// reservation. @@ -58,10 +65,11 @@ public CapacityReservationUpdate() /// List Microsoft.Compute SKUs in a region /// (https://docs.microsoft.com/rest/api/compute/resourceskus/list) for /// supported values. - public CapacityReservationUpdate(IDictionary tags = default(IDictionary), string reservationId = default(string), IList virtualMachinesAssociated = default(IList), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), CapacityReservationInstanceView instanceView = default(CapacityReservationInstanceView), System.DateTime? timeCreated = default(System.DateTime?), Sku sku = default(Sku)) + public CapacityReservationUpdate(IDictionary tags = default(IDictionary), string reservationId = default(string), int? platformFaultDomainCount = default(int?), IList virtualMachinesAssociated = default(IList), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), CapacityReservationInstanceView instanceView = default(CapacityReservationInstanceView), System.DateTime? timeCreated = default(System.DateTime?), Sku sku = default(Sku)) : base(tags) { ReservationId = reservationId; + PlatformFaultDomainCount = platformFaultDomainCount; VirtualMachinesAssociated = virtualMachinesAssociated; ProvisioningTime = provisioningTime; ProvisioningState = provisioningState; @@ -84,6 +92,18 @@ public CapacityReservationUpdate() [JsonProperty(PropertyName = "properties.reservationId")] public string ReservationId { get; private set; } + /// + /// Gets specifies the value of fault domain count that Capacity + /// Reservation supports for requested VM size.&lt;br&gt;NOTE: + /// The fault domain count specified for a resource (like virtual + /// machines scale set) must be less than or equal to this value if it + /// deploys using capacity + /// reservation.&lt;br&gt;&lt;br&gt;Minimum + /// api-version: 2022-08-01. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomainCount")] + public int? PlatformFaultDomainCount { get; private set; } + /// /// Gets a list of all virtual machine resource ids that are associated /// with the capacity reservation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUtilization.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUtilization.cs index a736b63c48b6..8579a9304104 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUtilization.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CapacityReservationUtilization.cs @@ -34,11 +34,16 @@ public CapacityReservationUtilization() /// Initializes a new instance of the CapacityReservationUtilization /// class. /// + /// The value provides the current + /// capacity of the VM size which was reserved successfully and for + /// which the customer is getting billed.<br><br>Minimum + /// api-version: 2022-08-01. /// A list of all virtual /// machines resource ids allocated against the capacity /// reservation. - public CapacityReservationUtilization(IList virtualMachinesAllocated = default(IList)) + public CapacityReservationUtilization(int? currentCapacity = default(int?), IList virtualMachinesAllocated = default(IList)) { + CurrentCapacity = currentCapacity; VirtualMachinesAllocated = virtualMachinesAllocated; CustomInit(); } @@ -48,6 +53,15 @@ public CapacityReservationUtilization() /// partial void CustomInit(); + /// + /// Gets the value provides the current capacity of the VM size which + /// was reserved successfully and for which the customer is getting + /// billed.&lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2022-08-01. + /// + [JsonProperty(PropertyName = "currentCapacity")] + public int? CurrentCapacity { get; private set; } + /// /// Gets a list of all virtual machines resource ids allocated against /// the capacity reservation. 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 c7444752d8e7..965cf1364ce9 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. - 57.0.0 + 58.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CapacityReservationTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CapacityReservationTests.cs index 3a7eb7e1ed34..eb379bdc8d1d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CapacityReservationTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CapacityReservationTests.cs @@ -20,7 +20,7 @@ public void TestCapacityReservationOperations() string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); using (MockContext context = MockContext.Start(this.GetType())) { - Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus"); + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2euap"); EnsureClientsInitialized(context); string baseRGName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -51,8 +51,8 @@ public void TestCapacityReservationOperations() //Create CapacityReservation within the CapacityReservationGroup and validate var createdCR = CreateCapacityReservation(rgName, crgName, crName, "Standard_DS1_v2", availabilityZone: "1"); - var returnedCR = m_CrpClient.CapacityReservations.Get(rgName, crgName, crName); - ValidateCapacityReservation(createdCR, returnedCR); + var returnedCRWithInstanceView = m_CrpClient.CapacityReservations.Get(rgName, crgName, crName, expand: "instanceView"); + ValidateCapacityReservation(createdCR, returnedCRWithInstanceView, isInstanceViewIncluded : true); //List CapacityReservations var listCRsResponse = m_CrpClient.CapacityReservations.ListByCapacityReservationGroup(rgName, crgName); @@ -78,7 +78,7 @@ public void TestNonZonalCapacityReservationGroupInstanceView() string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); using (MockContext context = MockContext.Start(this.GetType())) { - Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "southcentralus"); + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2euap"); EnsureClientsInitialized(context); string baseRGName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -95,8 +95,8 @@ public void TestNonZonalCapacityReservationGroupInstanceView() //Create CapacityReservation within the CapacityReservationGroup and validate var createdCR = CreateCapacityReservation(rgName, crgName, crName, "Standard_DS1_v2"); - var returnedCR = m_CrpClient.CapacityReservations.Get(rgName, crgName, crName); - ValidateCapacityReservation(createdCR, returnedCR); + var returnedCR = m_CrpClient.CapacityReservations.Get(rgName, crgName, crName, expand: "instanceView"); + ValidateCapacityReservation(createdCR, returnedCR, isInstanceViewIncluded: true); // Validate Capacity Reservation group instance view CapacityReservationGroup returnedCRGWithInstanceView = m_CrpClient.CapacityReservationGroups.Get(rgName, crgName, CapacityReservationGroupInstanceViewTypes.InstanceView); @@ -153,7 +153,7 @@ private void ValidateCapacityReservationGroupInstanceView(CapacityReservationGro } } - private void ValidateCapacityReservation(CapacityReservation expectedCR, CapacityReservation actualCR) + private void ValidateCapacityReservation(CapacityReservation expectedCR, CapacityReservation actualCR, bool isInstanceViewIncluded = false) { if (expectedCR == null) { @@ -176,7 +176,14 @@ private void ValidateCapacityReservation(CapacityReservation expectedCR, Capacit Assert.Equal(expectedCR.ReservationId, actualCR.ReservationId); Assert.NotNull(actualCR.Sku); Assert.Equal(expectedCR.Sku.Name, actualCR.Sku.Name); + Assert.NotNull(actualCR.PlatformFaultDomainCount); + Assert.Equal(expectedCR.PlatformFaultDomainCount, actualCR.PlatformFaultDomainCount); Assert.Equal(expectedCR.Sku.Capacity, actualCR.Sku.Capacity); + if(isInstanceViewIncluded) + { + Assert.NotNull(actualCR.InstanceView.UtilizationInfo.CurrentCapacity); + Assert.Equal(actualCR.Sku.Capacity, actualCR.InstanceView.UtilizationInfo.CurrentCapacity); + } if (expectedCR.Zones != null) { Assert.Equal(1, actualCR.Zones.Count); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestCapacityReservationOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestCapacityReservationOperations.json index fa3e8c6526d2..d39c24471f94 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestCapacityReservationOperations.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestCapacityReservationOperations.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar8588CR?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjg1ODhDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar6600CR?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY2MDBDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:32Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:14Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42524f7d-f0dc-4f31-a2a5-f72df1cf2cc0" + "b63d1737-b2dc-44f2-8607-52d7f269b3d4" ], "Accept-Language": [ "en-US" @@ -15,14 +15,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "94" + "99" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "0118a50e-968f-4c51-866b-0d5a667ae379" + "0ffdb997-9cfe-41f8-a1e0-0a6218a12949" ], "x-ms-correlation-request-id": [ - "0118a50e-968f-4c51-866b-0d5a667ae379" + "0ffdb997-9cfe-41f8-a1e0-0a6218a12949" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220333Z:0118a50e-968f-4c51-866b-0d5a667ae379" + "WESTUS2:20220901T053115Z:0ffdb997-9cfe-41f8-a1e0-0a6218a12949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:32 GMT" + "Thu, 01 Sep 2022 05:31:15 GMT" ], "Content-Length": [ - "233" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR\",\r\n \"name\": \"crptestar8588CR\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR\",\r\n \"name\": \"crptestar6600CR\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f3b9345-5b0e-4a47-9778-7059ca0e62a1" + "e539cfb7-9b44-46be-9f11-84649fb3f3d0" ], "Accept-Language": [ "en-US" @@ -81,14 +81,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "67" + "72" ] }, "ResponseHeaders": { @@ -98,11 +98,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;116,Microsoft.Compute/PutDeleteCapacityReservation30Min;593" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d74b0bbc-8a93-4a23-ae87-39f9ee9da5c5" + "7ca5072d-5d8a-40cb-bc4f-317114db5ff4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -112,19 +115,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "c2c77722-ee7a-4dad-b256-7f97d192642a" + "9779e59a-0697-4e77-837a-26655513588a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220337Z:c2c77722-ee7a-4dad-b256-7f97d192642a" + "WESTUS2:20220901T053119Z:9779e59a-0697-4e77-837a-26655513588a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:37 GMT" + "Thu, 01 Sep 2022 05:31:18 GMT" ], "Content-Length": [ - "300" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -133,17 +136,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "238c157d-a1dd-4740-8785-81e331a0c775" + "ee7c2ac4-a852-4dcf-967d-619e3e236d3d" ], "Accept-Language": [ "en-US" @@ -151,7 +154,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -162,11 +165,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;241,Microsoft.Compute/GetCapacityReservation30Min;985" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fd7dd8e-8df3-43c6-a5e9-a9db8c264c0e" + "f83e0e01-31ee-4b59-9188-739e672cc6af" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -176,19 +182,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "c8382b1f-e8de-499e-a413-bfff06e941c4" + "187f44e8-1ba5-4024-80f3-aea5d20faa1b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220337Z:c8382b1f-e8de-499e-a413-bfff06e941c4" + "WESTUS2:20220901T053119Z:187f44e8-1ba5-4024-80f3-aea5d20faa1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:37 GMT" + "Thu, 01 Sep 2022 05:31:18 GMT" ], "Content-Length": [ - "300" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -197,17 +203,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20ed4cdf-474c-4a6a-8f6d-a36e38c861d0" + "a9eda2c7-37b5-4459-a8d6-791c8d21d877" ], "Accept-Language": [ "en-US" @@ -215,7 +221,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -226,11 +232,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;240,Microsoft.Compute/GetCapacityReservation30Min;984" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fce46343-7f67-4ad5-ae67-e44f67c9db99" + "4a98b36c-1bf6-4d30-9295-a28025095992" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -240,19 +249,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "1ff9d17c-eb57-4776-8ba5-ff4146d48ff0" + "680ad813-1827-432a-933c-164d9cfc33dd" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220339Z:1ff9d17c-eb57-4776-8ba5-ff4146d48ff0" + "WESTUS2:20220901T053120Z:680ad813-1827-432a-933c-164d9cfc33dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:38 GMT" + "Thu, 01 Sep 2022 05:31:19 GMT" ], "Content-Length": [ - "347" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,17 +270,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a321f76-04ed-4fb8-9b16-dc3e2ac5dcbe" + "0ca764cb-304a-49a9-b00b-08e48aae8d9e" ], "Accept-Language": [ "en-US" @@ -279,7 +288,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -296,11 +305,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;115,Microsoft.Compute/PutDeleteCapacityReservation30Min;592" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91aa4da7-938a-4670-a8fd-c7370d20481f" + "fecca42c-fc63-4abb-96b3-9f9ffd333c69" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -310,19 +322,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "6e807258-28a6-4580-9f49-0b792baa9204" + "f630a600-6c7d-491f-9034-8e1da08636ae" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220338Z:6e807258-28a6-4580-9f49-0b792baa9204" + "WESTUS2:20220901T053120Z:f630a600-6c7d-491f-9034-8e1da08636ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:38 GMT" + "Thu, 01 Sep 2022 05:31:19 GMT" ], "Content-Length": [ - "347" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,17 +343,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40aab4e6-fb65-4254-8a52-0623db7519da" + "971bf312-a0b7-4a4b-9c17-0f8a804fa575" ], "Accept-Language": [ "en-US" @@ -349,7 +361,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -360,11 +372,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostCapacityReservation3Min;137,Microsoft.Compute/HighCostCapacityReservation30Min;695" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7db63e7c-54fe-4f34-9feb-b100c2bed7a8" + "c21b620d-1da5-4431-a3a7-1226fd62017a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -374,19 +389,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "8e490824-5b27-4d8c-9c5e-437486468ee9" + "a411bf94-6e37-4353-8ddd-00ce247e7193" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220338Z:8e490824-5b27-4d8c-9c5e-437486468ee9" + "WESTUS2:20220901T053120Z:a411bf94-6e37-4353-8ddd-00ce247e7193" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:38 GMT" + "Thu, 01 Sep 2022 05:31:19 GMT" ], "Content-Length": [ - "424" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -395,17 +410,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/capacityReservationGroups?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9jYXBhY2l0eVJlc2VydmF0aW9uR3JvdXBzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/capacityReservationGroups?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9jYXBhY2l0eVJlc2VydmF0aW9uR3JvdXBzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51c7c2d2-ba7f-444c-bf2b-edec1d0bcf6e" + "6503edde-44fc-4cc7-8e9e-35c5dca27776" ], "Accept-Language": [ "en-US" @@ -413,7 +428,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -424,11 +439,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostCapacityReservation3Min;136,Microsoft.Compute/HighCostCapacityReservation30Min;694" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60039f33-0b25-4d8f-8601-d716f09b77e1" + "e1ce55aa-fcfd-41d9-8f49-b57fac8d26ff" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -438,19 +456,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "f4ddc1ba-5102-4fe6-b1d7-0d4ac589aa22" + "bb6e0bc3-80e0-4c3f-b3fa-ff5a6a84d49a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220339Z:f4ddc1ba-5102-4fe6-b1d7-0d4ac589aa22" + "WESTUS2:20220901T053120Z:bb6e0bc3-80e0-4c3f-b3fa-ff5a6a84d49a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:38 GMT" + "Thu, 01 Sep 2022 05:31:19 GMT" ], "Content-Length": [ - "424" + "3122" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,17 +477,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mjoCrg1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CAPACITYRESERVATIONTESTING/providers/Microsoft.Compute/capacityReservationGroups/mjoCrg1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CAPACITYRESERVATIONTESTING/providers/Microsoft.Compute/capacityReservationGroups/MJOCRG1/capacityReservations/MJOCR1\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR2665CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR2665CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR5305CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR5305CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"name\": \"myCapacityReservationGroup0\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/RGTESTSLICE11/providers/Microsoft.Compute/capacityReservationGroups/myCapacityReservationGroup0\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/RGTESTSLICE11/providers/Microsoft.Compute/capacityReservationGroups/MYCAPACITYRESERVATIONGROUP0/capacityReservations/MYCR00\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:40Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:20Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fba61b31-61d1-49aa-a350-55aa3fb6aac8" + "b78156c3-05a2-4445-b5c5-c77be4ed0fba" ], "Accept-Language": [ "en-US" @@ -477,14 +495,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "192" + "197" ] }, "ResponseHeaders": { @@ -495,16 +513,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0fd12fb4-b76a-4437-b6ed-33b50f07a7d1?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/1f04f0ad-f090-4558-9de4-ab1bc9af9bff?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01" ], "Azure-AsyncNotification": [ "Enabled" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;114,Microsoft.Compute/PutDeleteCapacityReservation30Min;591" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0fd12fb4-b76a-4437-b6ed-33b50f07a7d1" + "1f04f0ad-f090-4558-9de4-ab1bc9af9bff" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -514,19 +535,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "853432b8-900b-48d2-90e6-d8181371ab88" + "e4acfa28-005f-4923-888f-f7a62a51771b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220341Z:853432b8-900b-48d2-90e6-d8181371ab88" + "WESTUS2:20220901T053122Z:e4acfa28-005f-4923-888f-f7a62a51771b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:40 GMT" + "Thu, 01 Sep 2022 05:31:21 GMT" ], "Content-Length": [ - "651" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,19 +556,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:40Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"reservationId\": \"31e6a441-f02c-4b57-96e9-e90009c38204\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-10T18:03:40.754694-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:20Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"6cfe208b-9849-4373-9080-5b473e1d062e\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-31T22:31:21.2967449-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0fd12fb4-b76a-4437-b6ed-33b50f07a7d1?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGZkMTJmYjQtYjc2YS00NDM3LWI2ZWQtMzNiNTBmMDdhN2QxP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/1f04f0ad-f090-4558-9de4-ab1bc9af9bff?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8xZjA0ZjBhZC1mMDkwLTQ1NTgtOWRlNC1hYjFiYzlhZjliZmY/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -559,13 +580,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64017ac3-e509-4c18-8f3e-3d388cafb1b1" + "d5e0877b-cb63-43b4-9a43-91a36b1cad59" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -575,19 +596,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "c7e4fd48-df88-47cb-90d0-31523c55029a" + "55ec07e1-93b4-4450-a337-a01baa4ad0de" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220411Z:c7e4fd48-df88-47cb-90d0-31523c55029a" + "WESTUS2:20220901T053152Z:55ec07e1-93b4-4450-a337-a01baa4ad0de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:10 GMT" + "Thu, 01 Sep 2022 05:31:51 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -596,19 +617,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-08-10T18:03:40.754694-04:00\",\r\n \"endTime\": \"2022-08-10T18:03:40.8952943-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fd12fb4-b76a-4437-b6ed-33b50f07a7d1\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-31T22:31:21.2967449-07:00\",\r\n \"endTime\": \"2022-08-31T22:31:21.6717336-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f04f0ad-f090-4558-9de4-ab1bc9af9bff\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -619,11 +640,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;239,Microsoft.Compute/GetCapacityReservation30Min;980" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ef89e48-a8dc-43fb-b86e-28364b274ae0" + "42d954a5-f0cb-4277-a92a-8110ffbc525b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -633,19 +657,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "c5d713d6-cfd5-4bf8-aa20-762f11ff35a4" + "bf312466-acbe-473a-8ee1-604c79b4da46" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220411Z:c5d713d6-cfd5-4bf8-aa20-762f11ff35a4" + "WESTUS2:20220901T053152Z:bf312466-acbe-473a-8ee1-604c79b4da46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:10 GMT" + "Thu, 01 Sep 2022 05:31:51 GMT" ], "Content-Length": [ - "714" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,17 +678,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:40Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"reservationId\": \"31e6a441-f02c-4b57-96e9-e90009c38204\",\r\n \"provisioningTime\": \"2022-08-10T18:03:40.8640701-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-10T18:03:40.754694-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:20Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"6cfe208b-9849-4373-9080-5b473e1d062e\",\r\n \"provisioningTime\": \"2022-08-31T22:31:21.6404865-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-31T22:31:21.2967449-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?$expand=instanceView&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xPyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05d6382b-8440-421c-a966-1695e532b949" + "420f7326-fd25-4e9d-84d4-da8ff2140fb3" ], "Accept-Language": [ "en-US" @@ -672,7 +696,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -683,11 +707,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;238,Microsoft.Compute/GetCapacityReservation30Min;979" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a1c2363-8e39-45c3-876a-7f6078efd3a3" + "90070d0b-6775-40fd-9890-8610d09ca804" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -697,19 +724,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "ba341fc3-bcbc-4679-a29f-073c67e517fa" + "073b8ced-6387-4d04-a4d0-7c4d0f3f741d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220411Z:ba341fc3-bcbc-4679-a29f-073c67e517fa" + "WESTUS2:20220901T053152Z:073b8ced-6387-4d04-a4d0-7c4d0f3f741d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:10 GMT" + "Thu, 01 Sep 2022 05:31:52 GMT" ], "Content-Length": [ - "714" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,17 +745,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:40Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"reservationId\": \"31e6a441-f02c-4b57-96e9-e90009c38204\",\r\n \"provisioningTime\": \"2022-08-10T18:03:40.8640701-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-10T18:03:40.754694-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:20Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"6cfe208b-9849-4373-9080-5b473e1d062e\",\r\n \"provisioningTime\": \"2022-08-31T22:31:21.6404865-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"utilizationInfo\": {\r\n \"currentCapacity\": 1\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-08-31T22:31:21.6561139-07:00\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-31T22:31:21.2967449-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4146d31c-c764-4359-bc92-917a6cd2c13d" + "4cc31cc4-8af8-4d16-9c07-d955272fe324" ], "Accept-Language": [ "en-US" @@ -736,7 +763,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -747,11 +774,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;237,Microsoft.Compute/GetCapacityReservation30Min;978" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "255294b0-b920-4140-a746-caa4b4d1460d" + "620070e8-882b-4ee9-a74e-28ddc65f2359" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -761,19 +791,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "cc0e7070-81c0-4ff2-91a5-c87604a23807" + "ba310da8-1f19-4583-ab37-11f66f3d9f99" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220411Z:cc0e7070-81c0-4ff2-91a5-c87604a23807" + "WESTUS2:20220901T053153Z:ba310da8-1f19-4583-ab37-11f66f3d9f99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:11 GMT" + "Thu, 01 Sep 2022 05:31:52 GMT" ], "Content-Length": [ - "827" + "873" ], "Content-Type": [ "application/json; charset=utf-8" @@ -782,17 +812,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8588CR\": \"2022-08-10 22:03:40Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"reservationId\": \"31e6a441-f02c-4b57-96e9-e90009c38204\",\r\n \"provisioningTime\": \"2022-08-10T18:03:40.8640701-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-10T18:03:40.754694-04:00\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar6600CR\": \"2022-09-01 05:31:20Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"6cfe208b-9849-4373-9080-5b473e1d062e\",\r\n \"provisioningTime\": \"2022-08-31T22:31:21.6404865-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-31T22:31:21.2967449-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b130e486-2cc3-45d2-b5ac-a821f3e08322" + "1aaf78e7-fe32-4902-86ad-021f40b787c9" ], "Accept-Language": [ "en-US" @@ -800,7 +830,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -812,19 +842,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/77948678-b7aa-4609-9390-5d1ee48687e0?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/0f87b03e-2387-41dc-bde8-b1a7e11ec805?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&monitor=true&api-version=2022-08-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/77948678-b7aa-4609-9390-5d1ee48687e0?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/0f87b03e-2387-41dc-bde8-b1a7e11ec805?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01" ], "Azure-AsyncNotification": [ "Enabled" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;116,Microsoft.Compute/PutDeleteCapacityReservation30Min;590" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77948678-b7aa-4609-9390-5d1ee48687e0" + "0f87b03e-2387-41dc-bde8-b1a7e11ec805" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -834,16 +867,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f86da67a-a68f-40eb-ab1c-ec8c705e507a" + "b03b2ed5-a91f-44a2-b498-a42674624c2f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220412Z:f86da67a-a68f-40eb-ab1c-ec8c705e507a" + "WESTUS2:20220901T053153Z:b03b2ed5-a91f-44a2-b498-a42674624c2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:11 GMT" + "Thu, 01 Sep 2022 05:31:52 GMT" ], "Expires": [ "-1" @@ -856,15 +889,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/77948678-b7aa-4609-9390-5d1ee48687e0?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzc5NDg2NzgtYjdhYS00NjA5LTkzOTAtNWQxZWU0ODY4N2UwP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/0f87b03e-2387-41dc-bde8-b1a7e11ec805?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8wZjg3YjAzZS0yMzg3LTQxZGMtYmRlOC1iMWE3ZTExZWM4MDU/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -876,13 +909,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aac41a3b-8d6b-49f1-a47a-97b6e105e53b" + "bff068ce-e880-489d-a39a-1996a792575d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -892,16 +925,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "232188de-c12a-4e31-babb-0a8d00b41dee" + "c5b7fe2c-11b2-475c-9664-59e64351672c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220442Z:232188de-c12a-4e31-babb-0a8d00b41dee" + "WESTUS2:20220901T053223Z:c5b7fe2c-11b2-475c-9664-59e64351672c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:41 GMT" + "Thu, 01 Sep 2022 05:32:23 GMT" ], "Content-Length": [ "184" @@ -913,19 +946,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-08-10T18:04:12.0669423-04:00\",\r\n \"endTime\": \"2022-08-10T18:04:12.1294373-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"77948678-b7aa-4609-9390-5d1ee48687e0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-31T22:31:53.3289215-07:00\",\r\n \"endTime\": \"2022-08-31T22:31:53.7976584-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0f87b03e-2387-41dc-bde8-b1a7e11ec805\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/77948678-b7aa-4609-9390-5d1ee48687e0?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzc5NDg2NzgtYjdhYS00NjA5LTkzOTAtNWQxZWU0ODY4N2UwP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5Jm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/0f87b03e-2387-41dc-bde8-b1a7e11ec805?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&monitor=true&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8wZjg3YjAzZS0yMzg3LTQxZGMtYmRlOC1iMWE3ZTExZWM4MDU/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -937,13 +970,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "165efda9-268c-4781-8237-8559ec163556" + "b05bd402-8fa2-476b-b5ae-c63477732279" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -953,16 +986,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "d400890c-58e5-4e69-a27e-31473978198b" + "09dc0eee-4040-45c9-b64d-7a89103cb133" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220442Z:d400890c-58e5-4e69-a27e-31473978198b" + "WESTUS2:20220901T053223Z:09dc0eee-4040-45c9-b64d-7a89103cb133" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:41 GMT" + "Thu, 01 Sep 2022 05:32:23 GMT" ], "Expires": [ "-1" @@ -975,13 +1008,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar8588CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg1ODhDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar6600CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY2MDBDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ad736f3-51bb-4384-ac02-289a7b435af7" + "990e1c00-359e-4c2e-8266-b94c991937d4" ], "Accept-Language": [ "en-US" @@ -989,7 +1022,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1000,11 +1033,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;115,Microsoft.Compute/PutDeleteCapacityReservation30Min;589" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c8bed0e-5aab-4c13-b343-4be9756fb30e" + "438dafa7-b5ba-4e22-9e1e-54eb7ca44039" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1014,16 +1050,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f8e7d52c-b4b5-4891-a9c4-947d866dff4f" + "33a60668-03a4-4c91-9729-279cea0e7388" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220443Z:f8e7d52c-b4b5-4891-a9c4-947d866dff4f" + "WESTUS2:20220901T053225Z:33a60668-03a4-4c91-9729-279cea0e7388" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:42 GMT" + "Thu, 01 Sep 2022 05:32:24 GMT" ], "Expires": [ "-1" @@ -1036,13 +1072,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar8588CR?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjg1ODhDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar6600CR?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY2MDBDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f106fd5-f40e-49d1-af2a-d0655a44d3ca" + "5c63f953-b9c9-446c-aa45-9840b4e4b2ff" ], "Accept-Language": [ "en-US" @@ -1050,7 +1086,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1062,7 +1098,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTg4Q1ItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2NjAwQ1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1071,13 +1107,13 @@ "14999" ], "x-ms-request-id": [ - "83abb0b0-9d2b-421b-8a6e-6cbbd3db3645" + "11798a77-ce48-47d5-bdcb-d9cdce1a2a9f" ], "x-ms-correlation-request-id": [ - "83abb0b0-9d2b-421b-8a6e-6cbbd3db3645" + "11798a77-ce48-47d5-bdcb-d9cdce1a2a9f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220444Z:83abb0b0-9d2b-421b-8a6e-6cbbd3db3645" + "WESTUS2:20220901T053226Z:11798a77-ce48-47d5-bdcb-d9cdce1a2a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1122,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:43 GMT" + "Thu, 01 Sep 2022 05:32:26 GMT" ], "Expires": [ "-1" @@ -1099,15 +1135,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTg4Q1ItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRnNFExSXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2NjAwQ1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkyTmpBd1ExSXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1122,13 +1158,13 @@ "11999" ], "x-ms-request-id": [ - "c5cf1ff5-f966-4f41-9a90-fb1325fe1134" + "5397e598-a9cd-4065-aeab-bb5afed7ae41" ], "x-ms-correlation-request-id": [ - "c5cf1ff5-f966-4f41-9a90-fb1325fe1134" + "5397e598-a9cd-4065-aeab-bb5afed7ae41" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220459Z:c5cf1ff5-f966-4f41-9a90-fb1325fe1134" + "WESTUS2:20220901T053242Z:5397e598-a9cd-4065-aeab-bb5afed7ae41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1173,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:58 GMT" + "Thu, 01 Sep 2022 05:32:42 GMT" ], "Expires": [ "-1" @@ -1150,15 +1186,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4NTg4Q1ItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TlRnNFExSXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2NjAwQ1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkyTmpBd1ExSXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1173,13 +1209,13 @@ "11998" ], "x-ms-request-id": [ - "81ff90dd-76aa-4121-a561-39456741248b" + "33b54bd0-839e-49d5-8a92-f0c52e9b7a86" ], "x-ms-correlation-request-id": [ - "81ff90dd-76aa-4121-a561-39456741248b" + "33b54bd0-839e-49d5-8a92-f0c52e9b7a86" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220459Z:81ff90dd-76aa-4121-a561-39456741248b" + "WESTUS2:20220901T053242Z:33b54bd0-839e-49d5-8a92-f0c52e9b7a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1224,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:04:58 GMT" + "Thu, 01 Sep 2022 05:32:42 GMT" ], "Expires": [ "-1" @@ -1203,10 +1239,10 @@ ], "Names": { "TestCapacityReservationOperations": [ - "crptestar8588" + "crptestar6600" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "850f02f7-e14c-4fb7-905d-7b98bcae9c7f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestNonZonalCapacityReservationGroupInstanceView.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestNonZonalCapacityReservationGroupInstanceView.json index f43de1dc2ca7..8f8e812f7810 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestNonZonalCapacityReservationGroupInstanceView.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CapacityReservationTests/TestNonZonalCapacityReservationGroupInstanceView.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar4584CR?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQ1ODRDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar4427CR?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQ0MjdDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:00:57Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:54Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6f808660-69f5-445c-9fbe-50b9b1da5675" + "95d03846-87a2-4258-98d0-356a27504ab7" ], "Accept-Language": [ "en-US" @@ -15,14 +15,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "102" + "99" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "e70a507d-3ac0-46cb-9e54-344d72493116" + "81bb7a8a-2ae9-4d9f-b4cd-1fc48a551522" ], "x-ms-correlation-request-id": [ - "e70a507d-3ac0-46cb-9e54-344d72493116" + "81bb7a8a-2ae9-4d9f-b4cd-1fc48a551522" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220058Z:e70a507d-3ac0-46cb-9e54-344d72493116" + "WESTUS2:20220901T053755Z:81bb7a8a-2ae9-4d9f-b4cd-1fc48a551522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:00:57 GMT" + "Thu, 01 Sep 2022 05:37:55 GMT" ], "Content-Length": [ - "241" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR\",\r\n \"name\": \"crptestar4584CR\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR\",\r\n \"name\": \"crptestar4427CR\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:54Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42b25cd5-425d-4b01-830e-9f5500bf56cc" + "7acc5e37-6a93-40f5-8af0-e0ad30ec87d1" ], "Accept-Language": [ "en-US" @@ -81,14 +81,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "33" ] }, "ResponseHeaders": { @@ -98,11 +98,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;119,Microsoft.Compute/PutDeleteCapacityReservation30Min;588" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64a2ec2e-4afc-4acd-b89a-4c7430702f56" + "563184e0-68f6-4cc7-82b9-95eb5f28dc42" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -112,19 +115,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "264ee697-7658-4dbc-af2b-eb46bc272c16" + "2b37bf60-396f-47b0-aa27-5b5a0d448b53" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220102Z:264ee697-7658-4dbc-af2b-eb46bc272c16" + "WESTUS2:20220901T053758Z:2b37bf60-396f-47b0-aa27-5b5a0d448b53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:02 GMT" + "Thu, 01 Sep 2022 05:37:58 GMT" ], "Content-Length": [ - "269" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -133,17 +136,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe088984-76a3-439f-a58a-186d3885954a" + "e9e34722-e021-4d3d-9a1b-314328e060c7" ], "Accept-Language": [ "en-US" @@ -151,7 +154,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -162,11 +165,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;249,Microsoft.Compute/GetCapacityReservation30Min;974" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e63ec14a-fc4a-4004-b786-37f0c8551338" + "6f330354-1871-4d5c-b856-e96e0af742b0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -176,19 +182,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "7a17feaa-9e78-450f-a6e5-a79798fdf24d" + "b2fe4c7b-4f80-4ec4-9375-1d2f738a6293" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220102Z:7a17feaa-9e78-450f-a6e5-a79798fdf24d" + "WESTUS2:20220901T053759Z:b2fe4c7b-4f80-4ec4-9375-1d2f738a6293" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:02 GMT" + "Thu, 01 Sep 2022 05:37:58 GMT" ], "Content-Length": [ - "269" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -197,17 +203,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08973c8e-c2ff-49c6-8606-b6882071224d" + "81e086d6-aa6b-4e39-8a27-478fe2949506" ], "Accept-Language": [ "en-US" @@ -215,7 +221,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -226,11 +232,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;248,Microsoft.Compute/GetCapacityReservation30Min;973" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbb21955-1e0d-425b-9d7d-2ee0e223d908" + "b1c7ddc4-1e39-460f-9c36-7482fd7f406b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -240,19 +249,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "d2137169-168b-4194-8a5e-822098079b74" + "eac0ddec-a71a-40b4-97f4-17b8aa4b7b58" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220102Z:d2137169-168b-4194-8a5e-822098079b74" + "WESTUS2:20220901T053759Z:eac0ddec-a71a-40b4-97f4-17b8aa4b7b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:02 GMT" + "Thu, 01 Sep 2022 05:37:58 GMT" ], "Content-Length": [ - "269" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,17 +270,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:01:03Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:59Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "11886dd4-c516-41cd-8e2d-a926bce1b1e2" + "a44dd359-deae-4567-9222-f4e4056138b4" ], "Accept-Language": [ "en-US" @@ -279,14 +288,14 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "171" + "168" ] }, "ResponseHeaders": { @@ -297,16 +306,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/85d03d83-83b4-4c77-961f-7261e3a78c34?p=96b7e86d-7056-423e-a064-1fbfd3987e66&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/2717131a-2a44-4d7b-874f-2ef9e5316bb4?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01" ], "Azure-AsyncNotification": [ "Enabled" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;118,Microsoft.Compute/PutDeleteCapacityReservation30Min;587" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85d03d83-83b4-4c77-961f-7261e3a78c34" + "2717131a-2a44-4d7b-874f-2ef9e5316bb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -316,19 +328,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "7c7d1389-45a6-48b5-a081-2e32a13061ae" + "f46ed7c1-762d-4d6a-abf2-616a3a474661" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220106Z:7c7d1389-45a6-48b5-a081-2e32a13061ae" + "WESTUS2:20220901T053800Z:f46ed7c1-762d-4d6a-abf2-616a3a474661" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:06 GMT" + "Thu, 01 Sep 2022 05:38:00 GMT" ], "Content-Length": [ - "631" + "664" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,19 +349,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:01:03Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"reservationId\": \"aed3f9c7-5ade-4555-ab8a-cf55a4f63d42\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-10T18:01:05.5563759-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:59Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"f3bf65f0-fc3b-485f-8e26-b85f4b351728\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-31T22:37:59.9721926-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/85d03d83-83b4-4c77-961f-7261e3a78c34?p=96b7e86d-7056-423e-a064-1fbfd3987e66&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy84NWQwM2Q4My04M2I0LTRjNzctOTYxZi03MjYxZTNhNzhjMzQ/cD05NmI3ZTg2ZC03MDU2LTQyM2UtYTA2NC0xZmJmZDM5ODdlNjYmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/2717131a-2a44-4d7b-874f-2ef9e5316bb4?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8yNzE3MTMxYS0yYTQ0LTRkN2ItODc0Zi0yZWY5ZTUzMTZiYjQ/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -361,13 +373,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22566075-5c72-4653-8ccc-fc8caaddc16f" + "8ecf6363-3cbb-493a-b80d-5057ce037ac9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -377,16 +389,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "3d095fc8-f333-4aeb-a881-ec77f9620672" + "88cab318-84e9-49e4-b991-e76ca5533c7e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220136Z:3d095fc8-f333-4aeb-a881-ec77f9620672" + "WESTUS2:20220901T053831Z:88cab318-84e9-49e4-b991-e76ca5533c7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:36 GMT" + "Thu, 01 Sep 2022 05:38:30 GMT" ], "Content-Length": [ "184" @@ -398,19 +410,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-08-10T18:01:05.5251307-04:00\",\r\n \"endTime\": \"2022-08-10T18:01:09.1032154-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"85d03d83-83b4-4c77-961f-7261e3a78c34\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-31T22:37:59.9721926-07:00\",\r\n \"endTime\": \"2022-08-31T22:38:03.3315896-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2717131a-2a44-4d7b-874f-2ef9e5316bb4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -421,11 +433,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;246,Microsoft.Compute/GetCapacityReservation30Min;971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d83670aa-1f01-4c72-8e04-42866df513f0" + "6c2d585b-8a35-42e3-84f0-c74050b92ce2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -435,19 +450,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "bb203dbb-98ec-4ba4-a078-e18656706981" + "14aba0b1-4e5c-4887-a37b-774d373efb46" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220136Z:bb203dbb-98ec-4ba4-a078-e18656706981" + "WESTUS2:20220901T053831Z:14aba0b1-4e5c-4887-a37b-774d373efb46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:36 GMT" + "Thu, 01 Sep 2022 05:38:30 GMT" ], "Content-Length": [ - "694" + "727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -456,17 +471,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:01:03Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"reservationId\": \"aed3f9c7-5ade-4555-ab8a-cf55a4f63d42\",\r\n \"provisioningTime\": \"2022-08-10T18:01:08.9782103-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-10T18:01:05.5563759-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:59Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"f3bf65f0-fc3b-485f-8e26-b85f4b351728\",\r\n \"provisioningTime\": \"2022-08-31T22:38:03.3159669-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-31T22:37:59.9721926-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?$expand=instanceView&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xPyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc1257d-4cb3-426b-a93d-81b1b5d1c0c6" + "22db562d-05a7-421d-8bc9-5da42d49891f" ], "Accept-Language": [ "en-US" @@ -474,7 +489,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -485,11 +500,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;245,Microsoft.Compute/GetCapacityReservation30Min;970" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4c27d21-5cf7-41a5-998c-6af8cd05a277" + "279e4ca6-2fc1-433f-b898-0af072a0b4d0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -499,19 +517,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "0cfe0e92-8c3b-49fd-b41f-577b93d9a8b6" + "438a65ec-4d0f-4a3a-86ac-d17449ca8e2d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220137Z:0cfe0e92-8c3b-49fd-b41f-577b93d9a8b6" + "WESTUS2:20220901T053831Z:438a65ec-4d0f-4a3a-86ac-d17449ca8e2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:36 GMT" + "Thu, 01 Sep 2022 05:38:30 GMT" ], "Content-Length": [ - "694" + "1065" ], "Content-Type": [ "application/json; charset=utf-8" @@ -520,17 +538,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"crptestar4584CR\": \"2022-08-10 22:01:03Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"reservationId\": \"aed3f9c7-5ade-4555-ab8a-cf55a4f63d42\",\r\n \"provisioningTime\": \"2022-08-10T18:01:08.9782103-04:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-10T18:01:05.5563759-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CR-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups/capacityReservations\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"crptestar4427CR\": \"2022-09-01 05:37:59Z\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"capacity\": 1\r\n },\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 3,\r\n \"reservationId\": \"f3bf65f0-fc3b-485f-8e26-b85f4b351728\",\r\n \"provisioningTime\": \"2022-08-31T22:38:03.3159669-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"utilizationInfo\": {\r\n \"currentCapacity\": 1\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-08-31T22:38:03.3159669-07:00\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-31T22:37:59.9721926-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?$expand=instanceView&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT8kZXhwYW5kPWluc3RhbmNlVmlldyZhcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?$expand=instanceView&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT8kZXhwYW5kPWluc3RhbmNlVmlldyZhcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d504a65d-4634-41e7-9ebc-c168cb945120" + "38f72af1-0dbe-4305-b462-e418002224ce" ], "Accept-Language": [ "en-US" @@ -538,7 +556,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -549,11 +567,14 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCapacityReservation3Min;244,Microsoft.Compute/GetCapacityReservation30Min;969" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f51db378-4bd1-4053-b277-3ae882ffce37" + "2eb1632a-e327-44a4-8be1-c3f622d42c64" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -563,19 +584,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "dcd4ecff-2512-44f7-b1eb-0953738f564d" + "da3e9fdf-83dd-4f11-91ec-3d9d1da86a5c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220137Z:dcd4ecff-2512-44f7-b1eb-0953738f564d" + "WESTUS2:20220901T053831Z:da3e9fdf-83dd-4f11-91ec-3d9d1da86a5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:37 GMT" + "Thu, 01 Sep 2022 05:38:30 GMT" ], "Content-Length": [ - "963" + "1006" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584,17 +605,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTAR4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"capacityReservations\": [\r\n {\r\n \"name\": \"CR-1\",\r\n \"utilizationInfo\": {},\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-10T18:01:08.9938361-04:00\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"CRG-1\",\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1\",\r\n \"type\": \"Microsoft.Compute/capacityReservationGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"capacityReservations\": [\r\n {\r\n \"id\": \"/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/CRPTESTAR4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"capacityReservations\": [\r\n {\r\n \"name\": \"CR-1\",\r\n \"utilizationInfo\": {\r\n \"currentCapacity\": 1\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-08-31T22:38:03.3159669-07:00\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1/capacityReservations/CR-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMS9jYXBhY2l0eVJlc2VydmF0aW9ucy9DUi0xP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad36f216-80fe-4d5f-8b58-2e4ff19a5804" + "144b1002-b853-4347-883e-73e1890f5157" ], "Accept-Language": [ "en-US" @@ -602,7 +623,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -614,38 +635,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/f382916b-6c48-40a8-9140-3629476eaec4?p=96b7e86d-7056-423e-a064-1fbfd3987e66&monitor=true&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/e5294bcd-3166-4aa7-a8fc-c6a75df3c083?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&monitor=true&api-version=2022-08-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/f382916b-6c48-40a8-9140-3629476eaec4?p=96b7e86d-7056-423e-a064-1fbfd3987e66&api-version=2022-08-01" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/e5294bcd-3166-4aa7-a8fc-c6a75df3c083?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01" ], "Azure-AsyncNotification": [ "Enabled" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;117,Microsoft.Compute/PutDeleteCapacityReservation30Min;586" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f382916b-6c48-40a8-9140-3629476eaec4" + "e5294bcd-3166-4aa7-a8fc-c6a75df3c083" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "b8f875e5-e551-4a0f-a78b-cc3466837180" + "0e225eb3-e28e-44c8-90c1-5c70380b8c7c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220138Z:b8f875e5-e551-4a0f-a78b-cc3466837180" + "WESTUS2:20220901T053832Z:0e225eb3-e28e-44c8-90c1-5c70380b8c7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:01:37 GMT" + "Thu, 01 Sep 2022 05:38:31 GMT" ], "Expires": [ "-1" @@ -658,15 +682,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/f382916b-6c48-40a8-9140-3629476eaec4?p=96b7e86d-7056-423e-a064-1fbfd3987e66&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9mMzgyOTE2Yi02YzQ4LTQwYTgtOTE0MC0zNjI5NDc2ZWFlYzQ/cD05NmI3ZTg2ZC03MDU2LTQyM2UtYTA2NC0xZmJmZDM5ODdlNjYmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/e5294bcd-3166-4aa7-a8fc-c6a75df3c083?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9lNTI5NGJjZC0zMTY2LTRhYTctYThmYy1jNmE3NWRmM2MwODM/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -678,13 +702,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c226230-3fdd-42c0-adde-9b5d97e5156a" + "09eaf666-4979-4627-814a-8ea97c5bc474" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -694,16 +718,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "477dc2d3-16ae-49fd-a194-d5ceb9b92f27" + "7ad3a850-c24c-4306-b3d8-97d144036808" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220208Z:477dc2d3-16ae-49fd-a194-d5ceb9b92f27" + "WESTUS2:20220901T053902Z:7ad3a850-c24c-4306-b3d8-97d144036808" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:02:07 GMT" + "Thu, 01 Sep 2022 05:39:01 GMT" ], "Content-Length": [ "184" @@ -715,19 +739,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-08-10T18:01:38.1499052-04:00\",\r\n \"endTime\": \"2022-08-10T18:01:38.2748771-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f382916b-6c48-40a8-9140-3629476eaec4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-31T22:38:32.0348865-07:00\",\r\n \"endTime\": \"2022-08-31T22:38:32.4567868-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e5294bcd-3166-4aa7-a8fc-c6a75df3c083\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southcentralus/operations/f382916b-6c48-40a8-9140-3629476eaec4?p=96b7e86d-7056-423e-a064-1fbfd3987e66&monitor=true&api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9mMzgyOTE2Yi02YzQ4LTQwYTgtOTE0MC0zNjI5NDc2ZWFlYzQ/cD05NmI3ZTg2ZC03MDU2LTQyM2UtYTA2NC0xZmJmZDM5ODdlNjYmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/e5294bcd-3166-4aa7-a8fc-c6a75df3c083?p=87a9fbb3-963a-4c57-84c0-09f4604080aa&monitor=true&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9lNTI5NGJjZC0zMTY2LTRhYTctYThmYy1jNmE3NWRmM2MwODM/cD04N2E5ZmJiMy05NjNhLTRjNTctODRjMC0wOWY0NjA0MDgwYWEmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -739,13 +763,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a01fc42a-33f4-4a7b-9f0e-386098ea6af5" + "3bb0736c-5c50-4b24-a98c-2fc29a0f9b00" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -755,16 +779,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "40240b47-da8a-485f-af47-bacd554b103d" + "adf0d90a-58ae-4db2-9176-cc352be9821d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220208Z:40240b47-da8a-485f-af47-bacd554b103d" + "WESTUS2:20220901T053902Z:adf0d90a-58ae-4db2-9176-cc352be9821d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:02:07 GMT" + "Thu, 01 Sep 2022 05:39:02 GMT" ], "Expires": [ "-1" @@ -777,13 +801,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestar4584CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1ODRDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourceGroups/crptestar4427CR/providers/Microsoft.Compute/capacityReservationGroups/CRG-1?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ0MjdDUi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2FwYWNpdHlSZXNlcnZhdGlvbkdyb3Vwcy9DUkctMT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "440117ae-991c-4da8-951b-6c34dc37d4ac" + "78eea957-77c2-4515-a0c2-da0164e98028" ], "Accept-Language": [ "en-US" @@ -791,7 +815,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -802,30 +826,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteCapacityReservation3Min;116,Microsoft.Compute/PutDeleteCapacityReservation30Min;585" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f17abb0-b1f5-412a-8ece-8f21f0af48ee" + "56000245-122d-48a2-a7fa-9856484a97e3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "d2907e57-9b1c-4a08-8232-86659db21329" + "8541f784-18ce-40da-a8df-4c8c4f76434d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220209Z:d2907e57-9b1c-4a08-8232-86659db21329" + "WESTUS2:20220901T053904Z:8541f784-18ce-40da-a8df-4c8c4f76434d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:02:09 GMT" + "Thu, 01 Sep 2022 05:39:03 GMT" ], "Expires": [ "-1" @@ -838,13 +865,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestar4584CR?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQ1ODRDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/resourcegroups/crptestar4427CR?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQ0MjdDUj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03dc1941-a4c9-4dfb-be1d-8272730536c8" + "057a6574-bdf3-4a47-a703-02238560097c" ], "Accept-Language": [ "en-US" @@ -852,7 +879,7 @@ "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -864,22 +891,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NDI3Q1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "acc16352-70df-4838-9cbf-579b182c38cb" + "f15a666e-e7d4-4aeb-b423-41e61cd850d8" ], "x-ms-correlation-request-id": [ - "acc16352-70df-4838-9cbf-579b182c38cb" + "f15a666e-e7d4-4aeb-b423-41e61cd850d8" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220211Z:acc16352-70df-4838-9cbf-579b182c38cb" + "WESTUS2:20220901T053905Z:f15a666e-e7d4-4aeb-b423-41e61cd850d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,7 +915,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:02:11 GMT" + "Thu, 01 Sep 2022 05:39:04 GMT" ], "Expires": [ "-1" @@ -901,15 +928,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NDI3Q1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTkRJM1ExSXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -920,80 +947,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "e7dbd40d-0372-4773-880a-8979d14db206" - ], - "x-ms-correlation-request-id": [ - "e7dbd40d-0372-4773-880a-8979d14db206" - ], - "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220226Z:e7dbd40d-0372-4773-880a-8979d14db206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Aug 2022 22:02:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.36202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "220e5b95-1b3c-466f-a916-0b308d426abb" + "eefba46e-125b-4987-9573-42e1bb8f8b96" ], "x-ms-correlation-request-id": [ - "220e5b95-1b3c-466f-a916-0b308d426abb" + "eefba46e-125b-4987-9573-42e1bb8f8b96" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220241Z:220e5b95-1b3c-466f-a916-0b308d426abb" + "WESTUS2:20220901T053920Z:eefba46e-125b-4987-9573-42e1bb8f8b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,172 +966,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:02:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.36202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "55820793-6c50-4c6a-b665-36cfca6856ea" - ], - "x-ms-correlation-request-id": [ - "55820793-6c50-4c6a-b665-36cfca6856ea" - ], - "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220257Z:55820793-6c50-4c6a-b665-36cfca6856ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Aug 2022 22:02:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.36202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "8f889c18-6632-4f9f-af3b-3dac9c780dc7" - ], - "x-ms-correlation-request-id": [ - "8f889c18-6632-4f9f-af3b-3dac9c780dc7" - ], - "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220312Z:8f889c18-6632-4f9f-af3b-3dac9c780dc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Aug 2022 22:03:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.36202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "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": [ - "36c991e9-61e7-40a6-89c4-24d66c042429" - ], - "x-ms-correlation-request-id": [ - "36c991e9-61e7-40a6-89c4-24d66c042429" - ], - "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220327Z:36c991e9-61e7-40a6-89c4-24d66c042429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Aug 2022 22:03:26 GMT" + "Thu, 01 Sep 2022 05:39:20 GMT" ], "Expires": [ "-1" @@ -1180,15 +979,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NTg0Q1ItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTlRnMFExSXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/850f02f7-e14c-4fb7-905d-7b98bcae9c7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0NDI3Q1ItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODUwZjAyZjctZTE0Yy00ZmI3LTkwNWQtN2I5OGJjYWU5YzdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTkRJM1ExSXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1200,16 +999,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "f1641761-24e5-4d54-8f87-406dea9ed65a" + "3f56ac41-2cac-4f54-a8b6-580f834f2948" ], "x-ms-correlation-request-id": [ - "f1641761-24e5-4d54-8f87-406dea9ed65a" + "3f56ac41-2cac-4f54-a8b6-580f834f2948" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220810T220327Z:f1641761-24e5-4d54-8f87-406dea9ed65a" + "WESTUS2:20220901T053920Z:3f56ac41-2cac-4f54-a8b6-580f834f2948" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1218,7 +1017,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Aug 2022 22:03:27 GMT" + "Thu, 01 Sep 2022 05:39:20 GMT" ], "Expires": [ "-1" @@ -1233,10 +1032,10 @@ ], "Names": { "TestNonZonalCapacityReservationGroupInstanceView": [ - "crptestar4584" + "crptestar4427" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "850f02f7-e14c-4fb7-905d-7b98bcae9c7f" } } \ No newline at end of file