diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/VirtualMachineScaleSet.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/VirtualMachineScaleSet.cs index 94fb6386def9..da225f1eae93 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/VirtualMachineScaleSet.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/VirtualMachineScaleSet.cs @@ -77,7 +77,43 @@ public partial class VirtualMachineScaleSet : Resource /// set /// The extended location of the Virtual /// Machine Scale Set. - /// + /// Specifies the orchestration mode + /// for the virtual machine scale set. Possible values include: + /// 'Uniform', 'Flexible' + /// Specifies the Spot Restore + /// properties for the virtual machine scale set. + /// Specifies the desired targets for + /// mixing Spot and Regular priority VMs within the same VMSS Flex + /// instance. + /// + + public VirtualMachineScaleSet(string location, string id, string name, string type, IDictionary tags, Sku sku, Plan plan, UpgradePolicy upgradePolicy, AutomaticRepairsPolicy automaticRepairsPolicy, VirtualMachineScaleSetVMProfile virtualMachineProfile, string provisioningState, bool? overprovision, bool? doNotRunExtensionsOnOverprovisionedVMs, string uniqueId, bool? singlePlacementGroup, bool? zoneBalance, int? platformFaultDomainCount, SubResource proximityPlacementGroup, SubResource hostGroup, AdditionalCapabilities additionalCapabilities, ScaleInPolicy scaleInPolicy, string orchestrationMode, SpotRestorePolicy spotRestorePolicy, VirtualMachineScaleSetIdentity identity, IList zones, ExtendedLocation extendedLocation, PriorityMixPolicy priorityMixPolicy = default(PriorityMixPolicy)) + : base(location, id, name, type, tags) + { + Sku = sku; + Plan = plan; + UpgradePolicy = upgradePolicy; + AutomaticRepairsPolicy = automaticRepairsPolicy; + VirtualMachineProfile = virtualMachineProfile; + ProvisioningState = provisioningState; + Overprovision = overprovision; + DoNotRunExtensionsOnOverprovisionedVMs = doNotRunExtensionsOnOverprovisionedVMs; + UniqueId = uniqueId; + SinglePlacementGroup = singlePlacementGroup; + ZoneBalance = zoneBalance; + PlatformFaultDomainCount = platformFaultDomainCount; + ProximityPlacementGroup = proximityPlacementGroup; + HostGroup = hostGroup; + AdditionalCapabilities = additionalCapabilities; + ScaleInPolicy = scaleInPolicy; + OrchestrationMode = orchestrationMode; + SpotRestorePolicy = spotRestorePolicy; + Identity = identity; + Zones = zones; + ExtendedLocation = extendedLocation; + PriorityMixPolicy = priorityMixPolicy; + CustomInit(); + } public VirtualMachineScaleSet(string location, string id, string name, string type, IDictionary tags, Sku sku, Plan plan, UpgradePolicy upgradePolicy, AutomaticRepairsPolicy automaticRepairsPolicy, VirtualMachineScaleSetVMProfile virtualMachineProfile, string provisioningState, bool? overprovision, bool? doNotRunExtensionsOnOverprovisionedVMs, string uniqueId, bool? singlePlacementGroup, bool? zoneBalance, int? platformFaultDomainCount, SubResource proximityPlacementGroup, SubResource hostGroup, AdditionalCapabilities additionalCapabilities, ScaleInPolicy scaleInPolicy, string orchestrationMode, SpotRestorePolicy spotRestorePolicy, VirtualMachineScaleSetIdentity identity, IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PriorityMixPolicy.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PriorityMixPolicy.cs new file mode 100644 index 000000000000..ed9e7e8d6ae1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PriorityMixPolicy.cs @@ -0,0 +1,93 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Specifies the target splits for Spot and Regular priority VMs within a + /// scale set with flexible orchestration mode. <br><br>With + /// this property the customer is able to specify the base number of + /// regular priority VMs created as the VMSS flex instance scales out and + /// the split between Spot and Regular priority VMs after this base target + /// has been reached. + /// + public partial class PriorityMixPolicy + { + /// + /// Initializes a new instance of the PriorityMixPolicy class. + /// + public PriorityMixPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PriorityMixPolicy class. + /// + /// The base number of regular + /// priority VMs that will be created in this scale set as it scales + /// out. + /// The percentage of + /// VM instances, after the base regular priority count has been + /// reached, that are expected to use regular priority. + public PriorityMixPolicy(int? baseRegularPriorityCount = default(int?), int? regularPriorityPercentageAboveBase = default(int?)) + { + BaseRegularPriorityCount = baseRegularPriorityCount; + RegularPriorityPercentageAboveBase = regularPriorityPercentageAboveBase; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the base number of regular priority VMs that will be + /// created in this scale set as it scales out. + /// + [JsonProperty(PropertyName = "baseRegularPriorityCount")] + public int? BaseRegularPriorityCount { get; set; } + + /// + /// Gets or sets the percentage of VM instances, after the base regular + /// priority count has been reached, that are expected to use regular + /// priority. + /// + [JsonProperty(PropertyName = "regularPriorityPercentageAboveBase")] + public int? RegularPriorityPercentageAboveBase { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (BaseRegularPriorityCount < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "BaseRegularPriorityCount", 0); + } + if (RegularPriorityPercentageAboveBase > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "RegularPriorityPercentageAboveBase", 100); + } + if (RegularPriorityPercentageAboveBase < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "RegularPriorityPercentageAboveBase", 0); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs index 90b1b73de66a..a7f95440afd3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs @@ -96,6 +96,9 @@ public VirtualMachineScaleSet() /// 'Uniform', 'Flexible' /// Specifies the Spot Restore /// properties for the virtual machine scale set. + /// Specifies the desired targets for + /// mixing Spot and Regular priority VMs within the same VMSS Flex + /// instance. /// Specifies the time at which the Virtual /// Machine Scale Set resource was created.<br><br>Minimum /// api-version: 2021-11-01. @@ -106,7 +109,7 @@ public VirtualMachineScaleSet() /// set /// The extended location of the Virtual /// Machine Scale Set. - public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), string orchestrationMode = default(string), SpotRestorePolicy spotRestorePolicy = default(SpotRestorePolicy), System.DateTime? timeCreated = default(System.DateTime?), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) + public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), string orchestrationMode = default(string), SpotRestorePolicy spotRestorePolicy = default(SpotRestorePolicy), PriorityMixPolicy priorityMixPolicy = default(PriorityMixPolicy), System.DateTime? timeCreated = default(System.DateTime?), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { Sku = sku; @@ -127,6 +130,7 @@ public VirtualMachineScaleSet() ScaleInPolicy = scaleInPolicy; OrchestrationMode = orchestrationMode; SpotRestorePolicy = spotRestorePolicy; + PriorityMixPolicy = priorityMixPolicy; TimeCreated = timeCreated; Identity = identity; Zones = zones; @@ -279,6 +283,13 @@ public VirtualMachineScaleSet() [JsonProperty(PropertyName = "properties.spotRestorePolicy")] public SpotRestorePolicy SpotRestorePolicy { get; set; } + /// + /// Gets or sets specifies the desired targets for mixing Spot and + /// Regular priority VMs within the same VMSS Flex instance. + /// + [JsonProperty(PropertyName = "properties.priorityMixPolicy")] + public PriorityMixPolicy PriorityMixPolicy { get; set; } + /// /// Gets specifies the time at which the Virtual Machine Scale Set /// resource was created.&lt;br&gt;&lt;br&gt;Minimum @@ -325,6 +336,10 @@ public override void Validate() { VirtualMachineProfile.Validate(); } + if (PriorityMixPolicy != null) + { + PriorityMixPolicy.Validate(); + } } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_PriorityMixPolicy.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_PriorityMixPolicy.json new file mode 100644 index 000000000000..d7ed534ae3c7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_PriorityMixPolicy.json @@ -0,0 +1,3803 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43eb2f34-de1b-45d1-b322-5dec2f6fadf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132996306607009274" + ], + "x-ms-request-id": [ + "1870753d-ff21-4b06-89f7-7c0c030b092a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "666ca327-6656-4cd7-9a01-5d4b090721a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190731Z:666ca327-6656-4cd7-9a01-5d4b090721a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:07:31 GMT" + ], + "Content-Length": [ + "307" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar8008?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgwMDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8008\": \"2022-08-23 19:07:30Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa95c95e-19c6-46f6-811b-d1174e719fcc" + ], + "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": [ + "92" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9c39e76e-3d8b-47a8-baef-cf15906d0e9e" + ], + "x-ms-correlation-request-id": [ + "9c39e76e-3d8b-47a8-baef-cf15906d0e9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190733Z:9c39e76e-3d8b-47a8-baef-cf15906d0e9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:07:33 GMT" + ], + "Content-Length": [ + "227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008\",\r\n \"name\": \"crptestar8008\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"crptestar8008\": \"2022-08-23 19:07:30Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar8008?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgwMDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d851ddbd-a23f-4969-a0aa-2b677a8979c5" + ], + "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": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "18331228-6a46-49d7-ad8d-466622f36c00" + ], + "x-ms-correlation-request-id": [ + "18331228-6a46-49d7-ad8d-466622f36c00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190807Z:18331228-6a46-49d7-ad8d-466622f36c00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:06 GMT" + ], + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008\",\r\n \"name\": \"crptestar8008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Storage/storageAccounts/crptestar2996?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIyOTk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62cb64c0-acbc-41f7-83f4-d21adc79680f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f43c885d-c828-488d-bbdb-0e4218ea6601?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "f43c885d-c828-488d-bbdb-0e4218ea6601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e2f88f73-c5c7-460d-809f-ca7223542cfb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190738Z:e2f88f73-c5c7-460d-809f-ca7223542cfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:07:38 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f43c885d-c828-488d-bbdb-0e4218ea6601?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9mNDNjODg1ZC1jODI4LTQ4OGQtYmJkYi0wZTQyMThlYTY2MDE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "edc4f04b-2edb-400c-bc83-69ab99167c34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2b3c4fa7-cca5-49b5-8e55-f8b2be03a22b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190755Z:2b3c4fa7-cca5-49b5-8e55-f8b2be03a22b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:07:55 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2613acf3-f4dd-4189-bf4a-a7dffcb83cdd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "880cecd9-7fde-4255-82d8-74835d8e0681" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "68156ca0-e247-4c8f-96ca-981efdef8187" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190806Z:68156ca0-e247-4c8f-96ca-981efdef8187" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:05 GMT" + ], + "Content-Length": [ + "736" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Storage/storageAccounts/crptestar2996\",\r\n \"name\": \"crptestar2996\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-08-23T19:07:35.7811073Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar2996.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar2996.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar2996.table.core.windows.net/\",\r\n \"file\": \"https://crptestar2996.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Storage/storageAccounts/crptestar2996?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIyOTk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b56c990-5a01-4ce2-92fe-45cdb36f02c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e183fab-f6ba-44fd-a58a-08c2c5b9ac48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "215504d5-457a-459c-9b36-7fbe91951200" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190806Z:215504d5-457a-459c-9b36-7fbe91951200" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:05 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Storage/storageAccounts/crptestar2996\",\r\n \"name\": \"crptestar2996\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-08-23T19:07:35.7811073Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar2996.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar2996.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar2996.table.core.windows.net/\",\r\n \"file\": \"https://crptestar2996.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/VMScaleSetDoesNotExist?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL1ZNU2NhbGVTZXREb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f368e8dd-64c6-472a-9989-6019965800ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "b085dc63-08e3-4a1f-8494-44ca2c17252e" + ], + "x-ms-correlation-request-id": [ + "b085dc63-08e3-4a1f-8494-44ca2c17252e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190806Z:b085dc63-08e3-4a1f-8494-44ca2c17252e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:06 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE1MTg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn249\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5ce7043-eeff-4bda-9fef-91b651d31c38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "d0182488-23f4-4a3c-add2-fd5751f54bb7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus/operations/d0182488-23f4-4a3c-add2-fd5751f54bb7?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "8b8c4492-d018-41a5-8026-60b9f44271d7" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3d687d3a-75a9-4ac7-be04-d7438f46f6ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190809Z:8b8c4492-d018-41a5-8026-60b9f44271d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:09 GMT" + ], + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip1518\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518\",\r\n \"etag\": \"W/\\\"08961d64-8f77-4e38-9700-4d6dc0be202e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9dd07224-f90e-4603-92a7-d6f084fda70c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn249\",\r\n \"fqdn\": \"dn249.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus/operations/d0182488-23f4-4a3c-add2-fd5751f54bb7?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDAxODI0ODgtMjNmNC00YTNjLWFkZDItZmQ1NzUxZjU0YmI3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d5338f1-99b9-43cc-90e7-0169cc156244" + ], + "x-ms-correlation-request-id": [ + "fe4bc0f9-36a5-4d05-99c6-f67dc23abd7c" + ], + "x-ms-arm-service-request-id": [ + "e29d04b5-f6c4-4c62-95cf-0b9ec8d32bf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190811Z:fe4bc0f9-36a5-4d05-99c6-f67dc23abd7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:10 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE1MTg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4075ded5-25f9-496f-a91e-8c63032099b1\"" + ], + "x-ms-request-id": [ + "362509c9-2199-4b69-b5c0-e16fdb8a9426" + ], + "x-ms-correlation-request-id": [ + "d369c5c8-c138-4df8-8373-1d9a1938c44a" + ], + "x-ms-arm-service-request-id": [ + "49931a15-9f1a-4da3-9b37-0b8edf6ad57e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190811Z:d369c5c8-c138-4df8-8373-1d9a1938c44a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:10 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip1518\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518\",\r\n \"etag\": \"W/\\\"4075ded5-25f9-496f-a91e-8c63032099b1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9dd07224-f90e-4603-92a7-d6f084fda70c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn249\",\r\n \"fqdn\": \"dn249.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE1MTg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d9f7f09-30bd-4b8a-b390-daaf192e163f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4075ded5-25f9-496f-a91e-8c63032099b1\"" + ], + "x-ms-request-id": [ + "c9305237-6f56-41e6-98e2-68f5feccede8" + ], + "x-ms-correlation-request-id": [ + "1fa1a831-1494-4556-b5cc-c62d905c2262" + ], + "x-ms-arm-service-request-id": [ + "38aec82d-a468-424c-817c-cf59aa0ae0a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190811Z:1fa1a831-1494-4556-b5cc-c62d905c2262" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:10 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip1518\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/publicIPAddresses/pip1518\",\r\n \"etag\": \"W/\\\"4075ded5-25f9-496f-a91e-8c63032099b1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9dd07224-f90e-4603-92a7-d6f084fda70c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn249\",\r\n \"fqdn\": \"dn249.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM1MTc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn8620\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7fbcb5b-d2cb-4fb9-bcf0-209fec078e0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "395" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9757890d-abfb-497e-8a76-9c8efaae030f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus/operations/9757890d-abfb-497e-8a76-9c8efaae030f?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "6442e4a6-ad4e-4b86-8b01-cf105a40c809" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fbce2411-f19c-44bc-ae51-652fb8d829f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190812Z:6442e4a6-ad4e-4b86-8b01-cf105a40c809" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:11 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn3517\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517\",\r\n \"etag\": \"W/\\\"b643a4d6-beab-4c91-a21c-a525ba789749\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bcdb2992-5c85-4930-adbd-3b4aa4459f19\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8620\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\",\r\n \"etag\": \"W/\\\"b643a4d6-beab-4c91-a21c-a525ba789749\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus/operations/9757890d-abfb-497e-8a76-9c8efaae030f?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTc1Nzg5MGQtYWJmYi00OTdlLThhNzYtOWM4ZWZhYWUwMzBmP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f3f31dd-1b77-4151-93e9-3520ae57c6d6" + ], + "x-ms-correlation-request-id": [ + "945de223-8f4a-4770-b415-fd853f680c91" + ], + "x-ms-arm-service-request-id": [ + "4610e90a-a490-4ce9-b6c3-bea8494407fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190815Z:945de223-8f4a-4770-b415-fd853f680c91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:14 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM1MTc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b63e6f40-9c63-4ff0-a44c-aa134898b6b7\"" + ], + "x-ms-request-id": [ + "b7b8c471-0083-450b-b885-c634d6672bad" + ], + "x-ms-correlation-request-id": [ + "ff8b091c-3aac-44ba-933b-c0b7f6551177" + ], + "x-ms-arm-service-request-id": [ + "ac180601-f022-43a2-93d2-9bcda4834330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190815Z:ff8b091c-3aac-44ba-933b-c0b7f6551177" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:14 GMT" + ], + "Content-Length": [ + "1317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn3517\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517\",\r\n \"etag\": \"W/\\\"b63e6f40-9c63-4ff0-a44c-aa134898b6b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bcdb2992-5c85-4930-adbd-3b4aa4459f19\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8620\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\",\r\n \"etag\": \"W/\\\"b63e6f40-9c63-4ff0-a44c-aa134898b6b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM1MTcvc3VibmV0cy9zbjg2MjA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fe88c9f-affa-46a5-96a5-72ab17a22349" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b63e6f40-9c63-4ff0-a44c-aa134898b6b7\"" + ], + "x-ms-request-id": [ + "4f466e8e-c7b3-41a6-9f06-60b1808d7749" + ], + "x-ms-correlation-request-id": [ + "ddd40f7c-fee0-457e-9168-56c7d2d6b92b" + ], + "x-ms-arm-service-request-id": [ + "57cbd354-d349-452d-9b1c-d0813316ff57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190815Z:ddd40f7c-fee0-457e-9168-56c7d2d6b92b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:14 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn8620\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\",\r\n \"etag\": \"W/\\\"b63e6f40-9c63-4ff0-a44c-aa134898b6b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzM0MDQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn8620\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n }\r\n },\r\n \"name\": \"ip2591\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28526563-27c6-4dd0-ac25-83f1bcc8dd1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "742" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bf0cc091-c44b-4587-9417-bd897b7ec612" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus/operations/bf0cc091-c44b-4587-9417-bd897b7ec612?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "5ee4be32-d1a7-4a98-9830-35853deedf57" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "21f0e4a4-52a6-4bfe-b763-36b033a95d7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190816Z:5ee4be32-d1a7-4a98-9830-35853deedf57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:15 GMT" + ], + "Content-Length": [ + "1624" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic3404\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4332fcd5-d197-485a-94f1-b250312f3f0a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2591\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404/ipConfigurations/ip2591\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"siu3xpeflqyetln3hnfkirm5db.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzM0MDQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"056e340b-e302-4998-b1a5-ffdd1847620f\"" + ], + "x-ms-request-id": [ + "33733a32-9bda-4d2c-9f61-e55ffc693126" + ], + "x-ms-correlation-request-id": [ + "7732de0f-452b-4f70-b8c8-3e721a8c0063" + ], + "x-ms-arm-service-request-id": [ + "f2657eed-137b-4d9e-99e0-b21476b7f851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190816Z:7732de0f-452b-4f70-b8c8-3e721a8c0063" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:15 GMT" + ], + "Content-Length": [ + "1624" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic3404\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4332fcd5-d197-485a-94f1-b250312f3f0a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2591\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404/ipConfigurations/ip2591\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"siu3xpeflqyetln3hnfkirm5db.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzM0MDQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02eef4ba-a98e-4b2f-9e9f-fb319237fc9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"056e340b-e302-4998-b1a5-ffdd1847620f\"" + ], + "x-ms-request-id": [ + "400afb0d-60f3-488c-a8f4-8111c950e871" + ], + "x-ms-correlation-request-id": [ + "2eacb30d-85e4-4739-a879-f548e9197438" + ], + "x-ms-arm-service-request-id": [ + "bf1995d3-99b7-4749-bf27-454dcac3acf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190816Z:2eacb30d-85e4-4739-a879-f548e9197438" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:16 GMT" + ], + "Content-Length": [ + "1624" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic3404\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4332fcd5-d197-485a-94f1-b250312f3f0a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2591\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/networkInterfaces/nic3404/ipConfigurations/ip2591\",\r\n \"etag\": \"W/\\\"056e340b-e302-4998-b1a5-ffdd1847620f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"siu3xpeflqyetln3hnfkirm5db.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3M1ODUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[PLACEHOLDEr1]\",\r\n \"customData\": \"Q3VzdG9tIGRhdGE=\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7778\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3251\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"publicIPAddressConfiguration\": {\r\n \"name\": \"pip1\",\r\n \"properties\": {\r\n \"idleTimeoutInMinutes\": 10\r\n }\r\n },\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"networkApiVersion\": \"2020-11-01\"\r\n },\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\"\r\n },\r\n \"platformFaultDomainCount\": 1,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"priorityMixPolicy\": {\r\n \"baseRegularPriorityCount\": 2,\r\n \"regularPriorityPercentageAboveBase\": 50\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d3a85fa-dd88-416e-96a5-4c2957d65ad1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2110" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cb89ab3-d5e3-48d7-91ef-54576db6cfc9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "17448e1b-9766-408a-9870-bdc25c1badbc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190818Z:17448e1b-9766-408a-9870-bdc25c1badbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:18 GMT" + ], + "Content-Length": [ + "4222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss5852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkApiVersion\": \"2020-11-01\",\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7778\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableIPForwarding\": false,\r\n \"deleteOption\": \"Delete\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3251\",\r\n \"properties\": {\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"publicIPAddressConfiguration\": {\r\n \"name\": \"pip1\",\r\n \"properties\": {\r\n \"idleTimeoutInMinutes\": 10,\r\n \"ipTags\": [],\r\n \"publicIPAddressVersion\": \"IPv4\"\r\n }\r\n },\r\n \"applicationSecurityGroups\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"f19020b6-1cac-4a27-86db-1f35dd436d02\",\r\n \"platformFaultDomainCount\": 1,\r\n \"priorityMixPolicy\": {\r\n \"baseRegularPriorityCount\": 2,\r\n \"regularPriorityPercentageAboveBase\": 50\r\n },\r\n \"constrainedMaximumCapacity\": false,\r\n \"timeCreated\": \"2022-08-23T15:08:18.0494672-04:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ccc14c3-73fb-437d-a1d7-b5b827cd8e1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8ed14e3e-e649-4ece-8ffa-eb590fe72b0e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190848Z:8ed14e3e-e649-4ece-8ffa-eb590fe72b0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:08:48 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "823811fb-c8ea-426b-ac5a-dfbe8834cc4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b0f44823-0b1e-494f-a8c3-5a013ab7df44" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190919Z:b0f44823-0b1e-494f-a8c3-5a013ab7df44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:09:18 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd87b894-b36e-4b77-9421-4971d81b8d01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ba2f2e2c-a814-4eb2-9daf-5db278f59c90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T190949Z:ba2f2e2c-a814-4eb2-9daf-5db278f59c90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:09:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d0d1af80-d181-436d-bb13-8b8c6a0fe988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c7116bc4-e07a-4bc9-a393-eb3c5b104888" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191019Z:c7116bc4-e07a-4bc9-a393-eb3c5b104888" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:10:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14901,Microsoft.Compute/GetOperation30Min;29901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a022a5da-466c-42e1-b30d-1df7866fa7fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "7fecc6a6-50bf-4224-8b69-926083fba871" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191049Z:7fecc6a6-50bf-4224-8b69-926083fba871" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:10:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14899,Microsoft.Compute/GetOperation30Min;29887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1752c3d9-33ca-45c7-9bb0-35143a4573d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "66a8f188-8eb1-4903-913f-19f26c59fa77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191119Z:66a8f188-8eb1-4903-913f-19f26c59fa77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:11:18 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14883,Microsoft.Compute/GetOperation30Min;29862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3dfb00e2-0d4f-49ee-bcf2-e7de766c5d29" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "33b75fa1-392e-40b7-99e9-73cadcacd03a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191149Z:33b75fa1-392e-40b7-99e9-73cadcacd03a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:11:48 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14898,Microsoft.Compute/GetOperation30Min;29851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "443b714c-c82e-481d-b8f1-f326c32e6c8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "14d9d67c-7574-41af-aa33-64a759db7d30" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191219Z:14d9d67c-7574-41af-aa33-64a759db7d30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:12:18 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14876,Microsoft.Compute/GetOperation30Min;29819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6edffe3-8e0f-49d5-a0dd-7bbd838b2324" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c4fbe5eb-6967-4780-9668-d205ccc35b3f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191249Z:c4fbe5eb-6967-4780-9668-d205ccc35b3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:12:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14899,Microsoft.Compute/GetOperation30Min;29809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "072f6e1e-ee69-4eb5-a34d-f12865369d1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "e7b4704e-e4f8-4c35-8b32-2d2d9d9f1ba1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191320Z:e7b4704e-e4f8-4c35-8b32-2d2d9d9f1ba1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:13:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14887,Microsoft.Compute/GetOperation30Min;29784" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0cb7f0c3-25e3-4060-aa99-66f7d4b00051" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "293bb746-cce0-4a98-8bb2-714aee03b172" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191350Z:293bb746-cce0-4a98-8bb2-714aee03b172" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:13:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14895,Microsoft.Compute/GetOperation30Min;29770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f22b7140-0837-4aa4-9ced-6cef64b8c5eb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "865d5c30-084e-494d-8c17-76d666285e36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191420Z:865d5c30-084e-494d-8c17-76d666285e36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:14:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9fac9917-2938-4047-996e-cd5ac5acf424" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "649ad5f3-c81e-41c8-997c-a968901d814f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191450Z:649ad5f3-c81e-41c8-997c-a968901d814f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:14:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14894,Microsoft.Compute/GetOperation30Min;29726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a70fdc62-b83d-4931-90ad-834dace58563" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "bc4612fc-c810-4d64-9060-3a74f40b3ae3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191520Z:bc4612fc-c810-4d64-9060-3a74f40b3ae3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:15:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14886,Microsoft.Compute/GetOperation30Min;29705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a95dfa3e-b028-462a-a37e-e249ed7ad3c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "98b3ce08-7aa2-4fab-8805-92c3468d97ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191550Z:98b3ce08-7aa2-4fab-8805-92c3468d97ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:15:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14897,Microsoft.Compute/GetOperation30Min;29690" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b7caec3-0e79-4104-bc9d-f153604d7f8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "da18592a-551d-40b3-9a97-479eda594797" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191620Z:da18592a-551d-40b3-9a97-479eda594797" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:16:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14875,Microsoft.Compute/GetOperation30Min;29659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "110d47ed-6491-4789-858e-f72df4a338ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "11d89770-21f6-4d07-b060-01016d51b1eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191650Z:11d89770-21f6-4d07-b060-01016d51b1eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:16:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14902,Microsoft.Compute/GetOperation30Min;29652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ab7d92b-57a1-46b6-bfc2-7c6e364d5672" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "8dec059b-8e6a-4a70-af19-1a7e99a4a78a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191721Z:8dec059b-8e6a-4a70-af19-1a7e99a4a78a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:17:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14897,Microsoft.Compute/GetOperation30Min;29638" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5d79f359-6d77-4999-b858-cdc293d1ff9e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "45348a0b-fe5b-4197-9b15-4eec49df8bc9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191751Z:45348a0b-fe5b-4197-9b15-4eec49df8bc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:17:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14914,Microsoft.Compute/GetOperation30Min;29629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7cbae0e7-0ce9-46cc-a38c-04cc35882c42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "1fff2a8a-b159-4f4a-a119-9ca6825c38d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191821Z:1fff2a8a-b159-4f4a-a119-9ca6825c38d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/3cb89ab3-d5e3-48d7-91ef-54576db6cfc9?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NiODlhYjMtZDVlMy00OGQ3LTkxZWYtNTQ1NzZkYjZjZmM5P3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cdabb3f7-98f8-47d5-ba7f-932422ca47d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "276c2732-31ff-4356-83c1-33b681b31cfd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191851Z:276c2732-31ff-4356-83c1-33b681b31cfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:51 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:08:18.0494672-04:00\",\r\n \"endTime\": \"2022-08-23T15:18:22.4429113-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3cb89ab3-d5e3-48d7-91ef-54576db6cfc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3M1ODUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e492e311-6884-40bb-953a-ea34bedd65f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "4e8e1443-ed5e-40e8-8014-bc367de90a8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191851Z:4e8e1443-ed5e-40e8-8014-bc367de90a8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:51 GMT" + ], + "Content-Length": [ + "4223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss5852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkApiVersion\": \"2020-11-01\",\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7778\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableIPForwarding\": false,\r\n \"deleteOption\": \"Delete\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3251\",\r\n \"properties\": {\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"publicIPAddressConfiguration\": {\r\n \"name\": \"pip1\",\r\n \"properties\": {\r\n \"idleTimeoutInMinutes\": 10,\r\n \"ipTags\": [],\r\n \"publicIPAddressVersion\": \"IPv4\"\r\n }\r\n },\r\n \"applicationSecurityGroups\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"f19020b6-1cac-4a27-86db-1f35dd436d02\",\r\n \"platformFaultDomainCount\": 1,\r\n \"priorityMixPolicy\": {\r\n \"baseRegularPriorityCount\": 2,\r\n \"regularPriorityPercentageAboveBase\": 50\r\n },\r\n \"constrainedMaximumCapacity\": false,\r\n \"timeCreated\": \"2022-08-23T15:08:18.0494672-04:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3M1ODUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a85f2f4-7c09-4cbe-84ef-d1fb6268e066" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b077f3a-b45e-487a-ae69-a9a14107051c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "34b1ba54-0836-46f5-a7b0-ed31f49d2c5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191851Z:34b1ba54-0836-46f5-a7b0-ed31f49d2c5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:51 GMT" + ], + "Content-Length": [ + "4223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss5852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkApiVersion\": \"2020-11-01\",\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7778\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableIPForwarding\": false,\r\n \"deleteOption\": \"Delete\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3251\",\r\n \"properties\": {\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"publicIPAddressConfiguration\": {\r\n \"name\": \"pip1\",\r\n \"properties\": {\r\n \"idleTimeoutInMinutes\": 10,\r\n \"ipTags\": [],\r\n \"publicIPAddressVersion\": \"IPv4\"\r\n }\r\n },\r\n \"applicationSecurityGroups\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"f19020b6-1cac-4a27-86db-1f35dd436d02\",\r\n \"platformFaultDomainCount\": 1,\r\n \"priorityMixPolicy\": {\r\n \"baseRegularPriorityCount\": 2,\r\n \"regularPriorityPercentageAboveBase\": 50\r\n },\r\n \"constrainedMaximumCapacity\": false,\r\n \"timeCreated\": \"2022-08-23T15:08:18.0494672-04:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3M1ODUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb0fcd5a-39b1-4eff-93c1-93e1e577caf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae147f58-e9da-4c22-bc68-a5ff88e2e781" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "c35ad75d-16e1-40be-aee7-424c202a9ea6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191851Z:c35ad75d-16e1-40be-aee7-424c202a9ea6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:51 GMT" + ], + "Content-Length": [ + "4223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss5852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkApiVersion\": \"2020-11-01\",\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7778\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableIPForwarding\": false,\r\n \"deleteOption\": \"Delete\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3251\",\r\n \"properties\": {\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Network/virtualNetworks/vn3517/subnets/sn8620\"\r\n },\r\n \"publicIPAddressConfiguration\": {\r\n \"name\": \"pip1\",\r\n \"properties\": {\r\n \"idleTimeoutInMinutes\": 10,\r\n \"ipTags\": [],\r\n \"publicIPAddressVersion\": \"IPv4\"\r\n }\r\n },\r\n \"applicationSecurityGroups\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"f19020b6-1cac-4a27-86db-1f35dd436d02\",\r\n \"platformFaultDomainCount\": 1,\r\n \"priorityMixPolicy\": {\r\n \"baseRegularPriorityCount\": 2,\r\n \"regularPriorityPercentageAboveBase\": 50\r\n },\r\n \"constrainedMaximumCapacity\": false,\r\n \"timeCreated\": \"2022-08-23T15:08:18.0494672-04:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar8008/providers/Microsoft.Compute/virtualMachineScaleSets/vmss5852?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3M1ODUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f18ceee6-53ca-4582-9058-503fd95da28d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&monitor=true&api-version=2022-08-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f16e749-537c-467b-9c71-f6caa632f602" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "9eccea28-b17d-4460-868a-d2b1a05f1bb6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191852Z:9eccea28-b17d-4460-868a-d2b1a05f1bb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:18:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYxNmU3NDktNTM3Yy00NjdiLTljNzEtZjZjYWE2MzJmNjAyP3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8059cf2c-c5dd-49ac-ad5f-a694af0f5974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "f1bd7dc3-9075-4382-acae-45d6ca4c2fe3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191922Z:f1bd7dc3-9075-4382-acae-45d6ca4c2fe3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:19:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:18:52.0211832-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f16e749-537c-467b-9c71-f6caa632f602\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYxNmU3NDktNTM3Yy00NjdiLTljNzEtZjZjYWE2MzJmNjAyP3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60568fc6-7ca6-4dfe-bd79-a78bf2f9259d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "fb4991c5-b79f-49d4-8e2e-f93e8bea2591" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T191952Z:fb4991c5-b79f-49d4-8e2e-f93e8bea2591" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:19:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:18:52.0211832-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f16e749-537c-467b-9c71-f6caa632f602\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYxNmU3NDktNTM3Yy00NjdiLTljNzEtZjZjYWE2MzJmNjAyP3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJmFwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bd57a14-41ed-4c7d-99a7-a83718c2860f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "6e2d72ac-9053-41a7-9d22-9cf909f1d4fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192022Z:6e2d72ac-9053-41a7-9d22-9cf909f1d4fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:20:21 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-23T15:18:52.0211832-04:00\",\r\n \"endTime\": \"2022-08-23T15:19:53.0215357-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f16e749-537c-467b-9c71-f6caa632f602\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/operations/2f16e749-537c-467b-9c71-f6caa632f602?p=bc9c7ae8-272f-468c-91ab-42b5442bf96b&monitor=true&api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYxNmU3NDktNTM3Yy00NjdiLTljNzEtZjZjYWE2MzJmNjAyP3A9YmM5YzdhZTgtMjcyZi00NjhjLTkxYWItNDJiNTQ0MmJmOTZiJm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd79c714-8505-47a1-bc96-788e38d82a13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "a9300124-4f22-4ce6-b13c-c164a5c0e97c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192022Z:a9300124-4f22-4ce6-b13c-c164a5c0e97c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:20:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar8008?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgwMDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b05db79f-9832-4654-b18f-d233173247aa" + ], + "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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "3da542d9-5ca0-49c1-8470-00bdf6de6bf6" + ], + "x-ms-correlation-request-id": [ + "3da542d9-5ca0-49c1-8470-00bdf6de6bf6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192024Z:3da542d9-5ca0-49c1-8470-00bdf6de6bf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:20:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3965b164-d8f0-4915-8c9f-20efc8a6f830" + ], + "x-ms-correlation-request-id": [ + "3965b164-d8f0-4915-8c9f-20efc8a6f830" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192039Z:3965b164-d8f0-4915-8c9f-20efc8a6f830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:20:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e5cb19ec-334f-4d13-84eb-5fa28c51080f" + ], + "x-ms-correlation-request-id": [ + "e5cb19ec-334f-4d13-84eb-5fa28c51080f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192054Z:e5cb19ec-334f-4d13-84eb-5fa28c51080f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:20:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d7ba793a-2f7b-43d9-9874-b47c903eb16f" + ], + "x-ms-correlation-request-id": [ + "d7ba793a-2f7b-43d9-9874-b47c903eb16f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192109Z:d7ba793a-2f7b-43d9-9874-b47c903eb16f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:21:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "5a3f3905-e339-452c-acc3-10f58509c4b1" + ], + "x-ms-correlation-request-id": [ + "5a3f3905-e339-452c-acc3-10f58509c4b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192124Z:5a3f3905-e339-452c-acc3-10f58509c4b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:21:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "50646553-7bd2-42fb-a349-ad5b460edbb1" + ], + "x-ms-correlation-request-id": [ + "50646553-7bd2-42fb-a349-ad5b460edbb1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192139Z:50646553-7bd2-42fb-a349-ad5b460edbb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:21:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "0af9bc7b-e8bb-4bb6-9e08-8365128a992e" + ], + "x-ms-correlation-request-id": [ + "0af9bc7b-e8bb-4bb6-9e08-8365128a992e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192154Z:0af9bc7b-e8bb-4bb6-9e08-8365128a992e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:21:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "26b709dc-7233-4bf1-be48-4b488e02c108" + ], + "x-ms-correlation-request-id": [ + "26b709dc-7233-4bf1-be48-4b488e02c108" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192210Z:26b709dc-7233-4bf1-be48-4b488e02c108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:22:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "afef4fa7-05b0-4177-96ed-4d35eae88d7b" + ], + "x-ms-correlation-request-id": [ + "afef4fa7-05b0-4177-96ed-4d35eae88d7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192225Z:afef4fa7-05b0-4177-96ed-4d35eae88d7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:22:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "11991" + ], + "x-ms-request-id": [ + "3c0baeea-642a-449d-91c9-28c3766f81df" + ], + "x-ms-correlation-request-id": [ + "3c0baeea-642a-449d-91c9-28c3766f81df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192240Z:3c0baeea-642a-449d-91c9-28c3766f81df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MDA4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkk0TURBNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "11990" + ], + "x-ms-request-id": [ + "5755b8d7-8a91-4729-b9f4-68766260946e" + ], + "x-ms-correlation-request-id": [ + "5755b8d7-8a91-4729-b9f4-68766260946e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20220823T192240Z:5755b8d7-8a91-4729-b9f4-68766260946e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Aug 2022 19:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "TestVMScaleSetScenarioOperations_PriorityMixPolicy": [ + "crptestar8008", + "vmss5852", + "crptestar2996" + ], + "CreatePublicIP": [ + "pip1518", + "dn249" + ], + "CreateVNET": [ + "vn3517", + "sn8620" + ], + "CreateNIC": [ + "nic3404", + "ip2591" + ], + "CreateDefaultVMScaleSetInput": [ + "crptestar2951", + "vmss8445", + "vmsstestnetconfig7778", + "vmsstestnetconfig3251" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs index 74eef3f6bdc6..c7a40c6becd6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs @@ -345,6 +345,82 @@ public void TestVMScaleSetScenarioOperations_SpotTryRestorePolicy() } } + [Fact] + [Trait("Name", "TestVMScaleSetScenarioOperations_PriorityMixPolicy")] + public void TestVMScaleSetScenarioOperations_PriorityMixPolicy() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + + // create a resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var vmssName = TestUtilities.GenerateName("vmss"); + string storageAccountName = TestUtilities.GenerateName(TestPrefix); + VirtualMachineScaleSet inputVMScaleSet; + + try + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus"); + EnsureClientsInitialized(context); + ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + + var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); + m_CrpClient.VirtualMachineScaleSets.Delete(rgName, "VMScaleSetDoesNotExist"); + + var publicIPConfiguration = new VirtualMachineScaleSetPublicIPAddressConfiguration(); + publicIPConfiguration.Name = "pip1"; + publicIPConfiguration.IdleTimeoutInMinutes = 10; + + PriorityMixPolicy priorityMixPolicy = new PriorityMixPolicy(baseRegularPriorityCount: 2, regularPriorityPercentageAboveBase: 50); + + var createVmssResponse = CreateVMScaleSet_NoAsyncTracking( + rgName, + vmssName, + storageAccountOutput, + imageRef, + out inputVMScaleSet, + null, + (vmScaleSet) => + { + vmScaleSet.VirtualMachineProfile.Priority = VirtualMachinePriorityTypes.Spot; + vmScaleSet.VirtualMachineProfile.EvictionPolicy = VirtualMachineEvictionPolicyTypes.Deallocate; + vmScaleSet.OrchestrationMode = OrchestrationMode.Flexible.ToString(); + vmScaleSet.Sku.Name = VirtualMachineSizeTypes.StandardA1V2; + vmScaleSet.Sku.Tier = "Standard"; + vmScaleSet.Sku.Capacity = 4; + vmScaleSet.PriorityMixPolicy = priorityMixPolicy; + vmScaleSet.PlatformFaultDomainCount = 1; + vmScaleSet.UpgradePolicy = null; + vmScaleSet.Overprovision = null; + vmScaleSet.SinglePlacementGroup = false; + vmScaleSet.VirtualMachineProfile.NetworkProfile.NetworkApiVersion = NetworkApiVersion.TwoZeroTwoZeroHyphenMinusOneOneHyphenMinusZeroOne; + vmScaleSet.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration = publicIPConfiguration; + }, + createWithManagedDisks: true, + createWithPublicIpAddress: false); + + ValidateVMScaleSet(inputVMScaleSet, createVmssResponse, true); + + VirtualMachineScaleSet getVmss = m_CrpClient.VirtualMachineScaleSets.Get(rgName, vmssName); + ValidateVMScaleSet(inputVMScaleSet, getVmss, true); + + Assert.NotNull(getVmss); + Assert.NotNull(getVmss.PriorityMixPolicy); + Assert.Equal(2, getVmss.PriorityMixPolicy.BaseRegularPriorityCount); + Assert.Equal(50, getVmss.PriorityMixPolicy.RegularPriorityPercentageAboveBase); + + m_CrpClient.VirtualMachineScaleSets.Delete(rgName, vmssName); + } + finally + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + // clean up the created resources + m_ResourcesClient.ResourceGroups.Delete(rgName); + } + } + } + [Fact] [Trait("Name", "TestVMScaleSetScenarioOperations_ScheduledEvents")] public void TestVMScaleSetScenarioOperations_ScheduledEvents()