diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPScenarioTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPScenarioTests.cs index c6e28c2768fb..d9decb3c4f19 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPScenarioTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPScenarioTests.cs @@ -126,5 +126,17 @@ public void Disk_CRUD_WithArchitecture_EmptyDisk() { Disk_CRUD_WithArchitecture_Execute(DiskCreateOption.Empty, "Disk_CRUD_WithArchitecture_EmptyDisk", diskSizeGB: 5); } + + [Fact] + public void Disk_CRUD_WithDiskControllerType() + { + Disk_CRUD_WithDiskControllerType_Execute(DiskCreateOption.Empty, "Disk_CRUD_WithDiskControllerType", diskSizeGB: 5); + } + + [Fact] + public void Disk_CRUD_OptimizeFrequentAttach() + { + Disk_OptimizeFrequentAttach_Execute(DiskCreateOption.Empty, "Disk_CRUD_OptimizeFrequentAttach", diskSizeGB: 32, location: "eastus2euap"); + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPTestsBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPTestsBase.cs index 935b6989109e..12b630247a63 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPTestsBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/DiskRPTests/DiskRPTestsBase.cs @@ -1613,6 +1613,173 @@ protected void Disk_CRUD_WithArchitecture_Execute(string diskCreateOption, strin } } } + + + protected void Disk_CRUD_WithDiskControllerType_Execute(string diskCreateOption, string methodName, int? diskSizeGB = null, string location = null) + { + using (MockContext context = MockContext.Start(this.GetType(), methodName)) + { + EnsureClientsInitialized(context); + DiskRPLocation = location ?? DiskRPLocation; + + // Data + var rgName = TestUtilities.GenerateName(TestPrefix); + var diskName = TestUtilities.GenerateName(DiskNamePrefix); + IList zones = null; + Disk disk = GenerateDefaultDisk(diskCreateOption, rgName, diskSizeGB, zones, location); + disk.SupportedCapabilities = new SupportedCapabilities { DiskControllerTypes = "SCSI" }; + + try + { + // ********** + // SETUP + // ********** + // Create resource group, unless create option is import in which case resource group will be created with vm, + // or copy in which case the resource group will be created with the original disk. + if (diskCreateOption != DiskCreateOption.Import && diskCreateOption != DiskCreateOption.Copy) + { + m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = DiskRPLocation }); + } + + // ********** + // TEST + // ********** + // Put disk with SCSI diskControllerTypes + Disk diskOut = m_CrpClient.Disks.CreateOrUpdate(rgName, diskName, disk); + Validate(disk, diskOut, DiskRPLocation); + + // Get + diskOut = m_CrpClient.Disks.Get(rgName, diskName); + Validate(disk, diskOut, DiskRPLocation); + Assert.NotNull(diskOut.SupportedCapabilities); + Assert.Equal("SCSI", diskOut.SupportedCapabilities.DiskControllerTypes); + + // Get disk access + AccessUri accessUri = m_CrpClient.Disks.GrantAccess(rgName, diskName, AccessDataDefault); + Assert.NotNull(accessUri.AccessSAS); + + // Get + diskOut = m_CrpClient.Disks.Get(rgName, diskName); + Validate(disk, diskOut, DiskRPLocation); + + // Patch + const string tagKey = "tagKey"; + var updatedisk = new DiskUpdate + { + Tags = new Dictionary() { { tagKey, "tagvalue" } }, + SupportedCapabilities = new SupportedCapabilities { DiskControllerTypes = "SCSI, NVMe" } + }; + diskOut = m_CrpClient.Disks.Update(rgName, diskName, updatedisk); + Validate(disk, diskOut, DiskRPLocation); + + // Get + diskOut = m_CrpClient.Disks.Get(rgName, diskName); + Validate(disk, diskOut, DiskRPLocation); + Assert.NotNull(diskOut.SupportedCapabilities); + Assert.Equal("SCSI, NVMe", diskOut.SupportedCapabilities.DiskControllerTypes); + + // End disk access + m_CrpClient.Disks.RevokeAccess(rgName, diskName); + + // Delete + m_CrpClient.Disks.Delete(rgName, diskName); + + try + { + // Ensure it was really deleted + m_CrpClient.Disks.Get(rgName, diskName); + Assert.False(true); + } + catch (CloudException ex) + { + Assert.Equal(HttpStatusCode.NotFound, ex.Response.StatusCode); + } + } + finally + { + // Delete resource group + m_ResourcesClient.ResourceGroups.Delete(rgName); + } + } + } + + protected void Disk_OptimizeFrequentAttach_Execute(string diskCreateOption, string methodName, int? diskSizeGB = null, string location = null) + { + using (MockContext context = MockContext.Start(this.GetType(), methodName)) + { + EnsureClientsInitialized(context); + DiskRPLocation = location ?? DiskRPLocation; + + // Data + var rgName = TestUtilities.GenerateName(TestPrefix); + var diskName = TestUtilities.GenerateName(DiskNamePrefix); + // m_CrpClient.Disks.RevokeAccess(rgName, diskName); + IList zones = null; + Disk disk = GenerateDefaultDisk(diskCreateOption, rgName, diskSizeGB, zones, location); + disk.OptimizedForFrequentAttach = true; + + try + { + // ********** + // SETUP + // ********** + // Create resource group, unless create option is import in which case resource group will be created with vm, + // or copy in which case the resource group will be created with the original disk. + if (diskCreateOption != DiskCreateOption.Import && diskCreateOption != DiskCreateOption.Copy) + { + m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = DiskRPLocation }); + } + + // ********** + // TEST + // ********** + // Put disk with SCSI diskControllerTypes + Disk diskOut = m_CrpClient.Disks.CreateOrUpdate(rgName, diskName, disk); + Validate(disk, diskOut, DiskRPLocation); + + // Get + diskOut = m_CrpClient.Disks.Get(rgName, diskName); + Validate(disk, diskOut, DiskRPLocation); + Assert.True(diskOut.OptimizedForFrequentAttach); + + + // Patch + const string tagKey = "tagKey"; + var updatedisk = new DiskUpdate + { + OptimizedForFrequentAttach = false + }; + diskOut = m_CrpClient.Disks.Update(rgName, diskName, updatedisk); + Validate(disk, diskOut, DiskRPLocation); + + // Get + diskOut = m_CrpClient.Disks.Get(rgName, diskName); + Validate(disk, diskOut, DiskRPLocation); + Assert.NotNull(diskOut.SupportedCapabilities); + Assert.False(diskOut.OptimizedForFrequentAttach); + + // Delete + m_CrpClient.Disks.Delete(rgName, diskName); + + try + { + // Ensure it was really deleted + m_CrpClient.Disks.Get(rgName, diskName); + Assert.False(true); + } + catch (CloudException ex) + { + Assert.Equal(HttpStatusCode.NotFound, ex.Response.StatusCode); + } + } + finally + { + // Delete resource group + m_ResourcesClient.ResourceGroups.Delete(rgName); + } + } + } + #endregion #region Generation diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_OptimizeFrequentAttach.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_OptimizeFrequentAttach.json new file mode 100644 index 000000000000..52736807fa2e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_OptimizeFrequentAttach.json @@ -0,0 +1,785 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar994?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "195b4928-bee8-4e08-a3d6-bb0c72256d06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4541b78d-daa4-48a7-a951-7a3142758322" + ], + "x-ms-correlation-request-id": [ + "4541b78d-daa4-48a7-a951-7a3142758322" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184241Z:4541b78d-daa4-48a7-a951-7a3142758322" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:41 GMT" + ], + "Content-Length": [ + "182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994\",\r\n \"name\": \"crptestar994\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvZGlza3JwOTY0Mj9hcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"optimizedForFrequentAttach\": true\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5798b05-e42d-48af-ac7f-2266c798ba4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "253" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/592c1925-b6e4-4fbc-95e3-9b63bcd13e4a?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&monitor=true&api-version=2022-07-02" + ], + "Retry-After": [ + "2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/592c1925-b6e4-4fbc-95e3-9b63bcd13e4a?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "592c1925-b6e4-4fbc-95e3-9b63bcd13e4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1a2ee235-e064-4a66-bd1b-5dd9f6e5ce23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184245Z:1a2ee235-e064-4a66-bd1b-5dd9f6e5ce23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:45 GMT" + ], + "Content-Length": [ + "491" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp9642\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2euap\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"optimizedForFrequentAttach\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/592c1925-b6e4-4fbc-95e3-9b63bcd13e4a?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvRGlza09wZXJhdGlvbnMvNTkyYzE5MjUtYjZlNC00ZmJjLTk1ZTMtOWI2M2JjZDEzZTRhP3A9ZGVkMWRjMGUtYmM1OS00NDkxLWI3MDctYzBhOWM5OGFiMDIxJmFwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "3b2176ba-8dee-49fe-bb00-98c03887bc45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7099a346-3e03-4a17-969e-8013779baf81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184247Z:7099a346-3e03-4a17-969e-8013779baf81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:47 GMT" + ], + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T11:42:44.96709-07:00\",\r\n \"endTime\": \"2022-08-23T11:42:45.2952178-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskrp9642\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2euap\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"optimizedForFrequentAttach\": true,\r\n \"timeCreated\": \"2022-08-23T11:42:45.1076963-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"79943b96-f6c5-4b4b-8e42-d46593b3aafd\",\r\n \"tier\": \"S4\"\r\n }\r\n }\r\n },\r\n \"name\": \"592c1925-b6e4-4fbc-95e3-9b63bcd13e4a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvZGlza3JwOTY0Mj9hcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "7e5cb7d9-28f3-4937-a79f-aac6a47121c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5eae84ee-c56b-4f21-9e64-d9bac6cc2f7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184247Z:5eae84ee-c56b-4f21-9e64-d9bac6cc2f7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:47 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp9642\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2euap\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"optimizedForFrequentAttach\": true,\r\n \"timeCreated\": \"2022-08-23T11:42:45.1076963-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"79943b96-f6c5-4b4b-8e42-d46593b3aafd\",\r\n \"tier\": \"S4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvZGlza3JwOTY0Mj9hcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1791a54-6f65-4cb3-8643-537432a66878" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "c50e8917-932c-4d0c-8c36-b77fcb776a1f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "084a9abf-c648-498b-b454-7d7a7153ba8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184248Z:084a9abf-c648-498b-b454-7d7a7153ba8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:47 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp9642\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2euap\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 32,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"optimizedForFrequentAttach\": true,\r\n \"timeCreated\": \"2022-08-23T11:42:45.1076963-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 34359738368,\r\n \"uniqueId\": \"79943b96-f6c5-4b4b-8e42-d46593b3aafd\",\r\n \"tier\": \"S4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvZGlza3JwOTY0Mj9hcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b96b560-c6a7-486f-a96f-805619736fd9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7e9d45ac-dc83-434f-ad21-88f946aaedb0" + ], + "x-ms-correlation-request-id": [ + "7e9d45ac-dc83-434f-ad21-88f946aaedb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184318Z:7e9d45ac-dc83-434f-ad21-88f946aaedb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/disks/diskrp9642' under resource group 'crptestar994' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar994/providers/Microsoft.Compute/disks/diskrp9642?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvZGlza3JwOTY0Mj9hcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fc03baf-e6c2-46b7-9a86-15221f03705a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/525d0b16-e068-4625-96a9-7a612e3730bc?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&monitor=true&api-version=2022-07-02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/525d0b16-e068-4625-96a9-7a612e3730bc?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "525d0b16-e068-4625-96a9-7a612e3730bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "475d5940-b208-49b0-8fd3-7be4051d52c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184248Z:475d5940-b208-49b0-8fd3-7be4051d52c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:42:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/525d0b16-e068-4625-96a9-7a612e3730bc?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvRGlza09wZXJhdGlvbnMvNTI1ZDBiMTYtZTA2OC00NjI1LTk2YTktN2E2MTJlMzczMGJjP3A9ZGVkMWRjMGUtYmM1OS00NDkxLWI3MDctYzBhOWM5OGFiMDIxJmFwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "7635caa5-377c-4335-99a0-08ff9c0bc2bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "70200b55-e1a2-4e76-ba8e-cff6e2669e06" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184318Z:70200b55-e1a2-4e76-ba8e-cff6e2669e06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:18 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T11:42:48.3577254-07:00\",\r\n \"endTime\": \"2022-08-23T11:42:48.6702528-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"525d0b16-e068-4625-96a9-7a612e3730bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2euap/DiskOperations/525d0b16-e068-4625-96a9-7a612e3730bc?p=ded1dc0e-bc59-4491-b707-c0a9c98ab021&monitor=true&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvRGlza09wZXJhdGlvbnMvNTI1ZDBiMTYtZTA2OC00NjI1LTk2YTktN2E2MTJlMzczMGJjP3A9ZGVkMWRjMGUtYmM1OS00NDkxLWI3MDctYzBhOWM5OGFiMDIxJm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ded1dc0e-bc59-4491-b707-c0a9c98ab021_133005829976662798" + ], + "x-ms-request-id": [ + "82351f00-9c4d-4faa-9949-9b0bfbf7f789" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "75ea05e5-0a38-4e62-b55a-2250ecd36a09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184318Z:75ea05e5-0a38-4e62-b55a-2250ecd36a09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar994?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23d669f9-0de2-456c-bd88-e220e0000b6a" + ], + "Accept-Language": [ + "en-US" + ], + "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/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI5OTQtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "7fb1c895-8e2f-47a0-9639-653f066de8bb" + ], + "x-ms-correlation-request-id": [ + "7fb1c895-8e2f-47a0-9639-653f066de8bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184319Z:7fb1c895-8e2f-47a0-9639-653f066de8bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI5OTQtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk1T1RRdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/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": [ + "11999" + ], + "x-ms-request-id": [ + "1edf5d21-1418-4640-aca7-21323ae220b4" + ], + "x-ms-correlation-request-id": [ + "1edf5d21-1418-4640-aca7-21323ae220b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184335Z:1edf5d21-1418-4640-aca7-21323ae220b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI5OTQtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk1T1RRdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/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": [ + "11998" + ], + "x-ms-request-id": [ + "42cd8528-0dbc-4f6b-9205-b59f80819ca1" + ], + "x-ms-correlation-request-id": [ + "42cd8528-0dbc-4f6b-9205-b59f80819ca1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220823T184335Z:42cd8528-0dbc-4f6b-9205-b59f80819ca1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 18:43:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Disk_OptimizeFrequentAttach_Execute": [ + "crptestar994", + "diskrp9642" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_WithDiskControllerType_Execute.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_WithDiskControllerType_Execute.json new file mode 100644 index 000000000000..c05334697381 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/DiskRPScenarioTests/Disk_CRUD_WithDiskControllerType_Execute.json @@ -0,0 +1,1543 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3435?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM0MzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b591164e-ed4f-40d9-8296-975b717286fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a2435cb1-5314-43e2-a67f-40076343a858" + ], + "x-ms-correlation-request-id": [ + "a2435cb1-5314-43e2-a67f-40076343a858" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211924Z:a2435cb1-5314-43e2-a67f-40076343a858" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:24 GMT" + ], + "Content-Length": [ + "186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435\",\r\n \"name\": \"crptestar3435\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e231f2b5-087e-4b43-9dcb-bf904cd08f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/9769a5e6-eecf-4d87-abc5-d57cae69c7a3?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02" + ], + "Retry-After": [ + "2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/9769a5e6-eecf-4d87-abc5-d57cae69c7a3?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "9769a5e6-eecf-4d87-abc5-d57cae69c7a3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1f7bd36c-4bfa-4aaf-8ae9-e87dd7d2612e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211933Z:1f7bd36c-4bfa-4aaf-8ae9-e87dd7d2612e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:32 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"location\": \"southeastasia\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/9769a5e6-eecf-4d87-abc5-d57cae69c7a3?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy85NzY5YTVlNi1lZWNmLTRkODctYWJjNS1kNTdjYWU2OWM3YTM/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmYXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "4eaf989d-e0f0-4003-930b-c5527950d202" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c754cbab-654f-447a-b63c-51dfd550e4e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211935Z:c754cbab-654f-447a-b63c-51dfd550e4e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:35 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"endTime\": \"2022-08-19T14:19:33.1424389-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n }\r\n },\r\n \"name\": \"9769a5e6-eecf-4d87-abc5-d57cae69c7a3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "527ce7d1-0f33-4429-b4f9-5f9b814ba21c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "70efe5be-9ea3-482b-9ec2-954c9c7fdd12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211935Z:70efe5be-9ea3-482b-9ec2-954c9c7fdd12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:35 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5209f086-1538-4105-b2a3-fa25dbda928d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "c7c2c869-53c3-4e76-922e-1ddf4b449468" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "cc7b3ecc-1c47-4bae-b2ed-7fcc4fbd036e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211936Z:cc7b3ecc-1c47-4bae-b2ed-7fcc4fbd036e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:35 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4622c16-8ed7-4722-95cf-62df3d7026bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "a0134916-0a96-4ae9-aede-4e8edc5398e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "1eabda0c-4a3c-4bd0-93bf-8b6518655784" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212007Z:1eabda0c-4a3c-4bd0-93bf-8b6518655784" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:07 GMT" + ], + "Content-Length": [ + "952" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "bb02f905-96dd-4f5a-93b1-fc8406ab0f1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "5b4d72f7-78e5-4d88-929a-5f75aff57594" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212011Z:5b4d72f7-78e5-4d88-929a-5f75aff57594" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:11 GMT" + ], + "Content-Length": [ + "1003" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey\": \"tagvalue\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI, NVMe\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "318973b8-12d8-451f-9cd3-5800e43efc38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "8b31f913-72fc-47c1-a075-4c0791d12fca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "3eedc6c6-7524-40da-8547-c9bf65e8ea42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212012Z:3eedc6c6-7524-40da-8547-c9bf65e8ea42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:11 GMT" + ], + "Content-Length": [ + "1003" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey\": \"tagvalue\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI, NVMe\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23a67050-55e7-4b5d-9171-94c572860180" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b6f2c8e8-c7f0-4189-9520-f84205de9ad4" + ], + "x-ms-correlation-request-id": [ + "b6f2c8e8-c7f0-4189-9520-f84205de9ad4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212114Z:b6f2c8e8-c7f0-4189-9520-f84205de9ad4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "219" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/disks/diskrp8246' under resource group 'crptestar3435' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246/beginGetAccess?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDYvYmVnaW5HZXRBY2Nlc3M/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"access\": \"Read\",\r\n \"durationInSeconds\": 1000\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0455b28e-2762-4af1-912f-42e098804dd4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "54" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/638ec280-dfec-4c03-8690-a757eda9fbb6?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/638ec280-dfec-4c03-8690-a757eda9fbb6?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "638ec280-dfec-4c03-8690-a757eda9fbb6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "91fa30d4-1c35-4814-a3dd-2207692e47bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T211936Z:91fa30d4-1c35-4814-a3dd-2207692e47bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:19:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/638ec280-dfec-4c03-8690-a757eda9fbb6?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy82MzhlYzI4MC1kZmVjLTRjMDMtODY5MC1hNzU3ZWRhOWZiYjY/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmYXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "7dd44280-03d2-422f-a6b9-50b42e1a3e79" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e3c708a2-0c4a-4a87-bb02-c2fedbc96849" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212007Z:e3c708a2-0c4a-4a87-bb02-c2fedbc96849" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:06 GMT" + ], + "Content-Length": [ + "432" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-19T14:19:36.6580961-07:00\",\r\n \"endTime\": \"2022-08-19T14:19:37.0175015-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"Sanitized\"\r\n }\r\n },\r\n \"name\": \"638ec280-dfec-4c03-8690-a757eda9fbb6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/638ec280-dfec-4c03-8690-a757eda9fbb6?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy82MzhlYzI4MC1kZmVjLTRjMDMtODY5MC1hNzU3ZWRhOWZiYjY/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "12030e39-c589-4264-90d7-d211d4561814" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ed9afe6e-14a8-48e2-a410-10311ff4a740" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212007Z:ed9afe6e-14a8-48e2-a410-10311ff4a740" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:06 GMT" + ], + "Content-Length": [ + "207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"accessSAS\": \"Sanitized\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI, NVMe\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tagKey\": \"tagvalue\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3ccc0a1-df4e-4be4-af12-a23984654dc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/0e23dd71-f3ba-4d48-9574-18fb255a056c?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02" + ], + "Retry-After": [ + "2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/0e23dd71-f3ba-4d48-9574-18fb255a056c?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "0e23dd71-f3ba-4d48-9574-18fb255a056c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "3e965531-f5cd-4481-9f95-79541e9a0aa7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212009Z:3e965531-f5cd-4481-9f95-79541e9a0aa7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:08 GMT" + ], + "Content-Length": [ + "652" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey\": \"tagvalue\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI, NVMe\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"colocationConstraints\": {},\r\n \"faultDomain\": 0\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/0e23dd71-f3ba-4d48-9574-18fb255a056c?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy8wZTIzZGQ3MS1mM2JhLTRkNDgtOTU3NC0xOGZiMjU1YTA1NmM/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmYXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "a44c1de0-d261-4965-baf8-30f10b3dbbc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "386757d3-05b5-49a2-bb36-67c724238d8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212011Z:386757d3-05b5-49a2-bb36-67c724238d8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:10 GMT" + ], + "Content-Length": [ + "1228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-19T14:20:09.0802595-07:00\",\r\n \"endTime\": \"2022-08-19T14:20:09.2208651-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskrp8246\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey\": \"tagvalue\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"supportedCapabilities\": {\r\n \"diskControllerTypes\": \"SCSI, NVMe\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 5,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-08-19T14:19:33.0174946-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n \"diskSizeBytes\": 5368709120,\r\n \"uniqueId\": \"4b2b7560-b30c-463f-82a3-bb2f39af7e97\"\r\n }\r\n }\r\n },\r\n \"name\": \"0e23dd71-f3ba-4d48-9574-18fb255a056c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246/endGetAccess?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDYvZW5kR2V0QWNjZXNzP2FwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0401f48e-eb30-4670-931d-4835943f137f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/f88d7440-583f-4153-b89d-b96121b48926?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/f88d7440-583f-4153-b89d-b96121b48926?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "f88d7440-583f-4153-b89d-b96121b48926" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b18ea75b-6acf-460e-b40a-e9751880564e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212012Z:b18ea75b-6acf-460e-b40a-e9751880564e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/f88d7440-583f-4153-b89d-b96121b48926?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy9mODhkNzQ0MC01ODNmLTQxNTMtYjg5ZC1iOTYxMjFiNDg5MjY/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmYXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "ca634fc5-2f79-4ae7-9958-98e6f57c1389" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "4b167309-edbf-4ae9-9515-69720bd7473c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212043Z:4b167309-edbf-4ae9-9515-69720bd7473c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:42 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-19T14:20:12.7052564-07:00\",\r\n \"endTime\": \"2022-08-19T14:20:12.8615121-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f88d7440-583f-4153-b89d-b96121b48926\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/f88d7440-583f-4153-b89d-b96121b48926?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy9mODhkNzQ0MC01ODNmLTQxNTMtYjg5ZC1iOTYxMjFiNDg5MjY/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "bf2ec2bc-0e41-4bad-89e4-d67e0f1b621e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "9b401804-49ae-46a1-8b38-01e3e5f4815d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212043Z:9b401804-49ae-46a1-8b38-01e3e5f4815d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3435/providers/Microsoft.Compute/disks/diskrp8246?api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL2Rpc2tycDgyNDY/YXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cf6b5bf-ef83-45be-b1b5-f30fcf05da2f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/e995d006-dc28-41cc-91f3-777be8814221?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/e995d006-dc28-41cc-91f3-777be8814221?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "e995d006-dc28-41cc-91f3-777be8814221" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "97a8df2c-11e6-4f96-9841-80719a74b3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212043Z:97a8df2c-11e6-4f96-9841-80719a74b3a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:20:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/e995d006-dc28-41cc-91f3-777be8814221?p=40b413c8-1c89-407c-9a87-4916243c3206&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy9lOTk1ZDAwNi1kYzI4LTQxY2MtOTFmMy03NzdiZTg4MTQyMjE/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmYXBpLXZlcnNpb249MjAyMi0wNy0wMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "f8a0b525-5ef5-4afa-90fa-345717bbaef9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "649b983e-dc61-4ce0-ab32-c130c670d0de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212114Z:649b983e-dc61-4ce0-ab32-c130c670d0de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:13 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-19T14:20:43.8773821-07:00\",\r\n \"endTime\": \"2022-08-19T14:20:44.1273717-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e995d006-dc28-41cc-91f3-777be8814221\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/DiskOperations/e995d006-dc28-41cc-91f3-777be8814221?p=40b413c8-1c89-407c-9a87-4916243c3206&monitor=true&api-version=2022-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9EaXNrT3BlcmF0aW9ucy9lOTk1ZDAwNi1kYzI4LTQxY2MtOTFmMy03NzdiZTg4MTQyMjE/cD00MGI0MTNjOC0xYzg5LTQwN2MtOWE4Ny00OTE2MjQzYzMyMDYmbW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDctMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/58.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "40b413c8-1c89-407c-9a87-4916243c3206_132774637079895591" + ], + "x-ms-request-id": [ + "d27c8759-13b7-46c4-898b-ac36410b1841" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "f200de1f-6145-4c5a-b014-c9b1ef940ae2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212114Z:f200de1f-6145-4c5a-b014-c9b1ef940ae2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3435?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM0MzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86c5edf9-2daf-4463-bf83-64726400b2bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.30802", + "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/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzNDM1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "64ca45b0-cf05-482d-9093-fd597ef49eef" + ], + "x-ms-correlation-request-id": [ + "64ca45b0-cf05-482d-9093-fd597ef49eef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212117Z:64ca45b0-cf05-482d-9093-fd597ef49eef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzNDM1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl6TkRNMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "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": [ + "11999" + ], + "x-ms-request-id": [ + "ccba0eb0-2cae-4c77-a2e5-873b4d97eb5a" + ], + "x-ms-correlation-request-id": [ + "ccba0eb0-2cae-4c77-a2e5-873b4d97eb5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212132Z:ccba0eb0-2cae-4c77-a2e5-873b4d97eb5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzNDM1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl6TkRNMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.30802", + "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": [ + "11998" + ], + "x-ms-request-id": [ + "0ebf1d40-65b5-4189-9458-6a2d56cf4137" + ], + "x-ms-correlation-request-id": [ + "0ebf1d40-65b5-4189-9458-6a2d56cf4137" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220819T212133Z:0ebf1d40-65b5-4189-9458-6a2d56cf4137" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Aug 2022 21:21:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Disk_CRUD_WithDiskControllerType_Execute": [ + "crptestar3435", + "diskrp8246" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file