diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs index f7e63a1b2a60..ec02bff29657 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs @@ -429,6 +429,29 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task StartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to + /// the Virtual Machine Instances + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> ReapplyWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Shuts down all the virtual machines in the virtual machine scale /// set, moves them to a new node, and powers them back on. /// @@ -894,6 +917,29 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to + /// the Virtual Machine Instances + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Shuts down all the virtual machines in the virtual machine scale /// set, moves them to a new node, and powers them back on. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs index faac3438b484..9832abca086b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs @@ -180,9 +180,12 @@ public override void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (PlatformFaultDomain < 0) + if (PlatformFaultDomain != null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + if (PlatformFaultDomain < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + } } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs index 43040c861db1..c64ee4a9560e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs @@ -160,9 +160,12 @@ public DedicatedHostUpdate() /// public virtual void Validate() { - if (PlatformFaultDomain < 0) + if (PlatformFaultDomain != null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + if (PlatformFaultDomain < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + } } } } 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 index ed9e7e8d6ae1..27410c33c633 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PriorityMixPolicy.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PriorityMixPolicy.cs @@ -76,17 +76,23 @@ public PriorityMixPolicy() /// public virtual void Validate() { - if (BaseRegularPriorityCount < 0) + if (BaseRegularPriorityCount != null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "BaseRegularPriorityCount", 0); + if (BaseRegularPriorityCount < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "BaseRegularPriorityCount", 0); + } } - if (RegularPriorityPercentageAboveBase > 100) + if (RegularPriorityPercentageAboveBase != null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "RegularPriorityPercentageAboveBase", 100); - } - if (RegularPriorityPercentageAboveBase < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "RegularPriorityPercentageAboveBase", 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/RollingUpgradePolicy.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs index eb309a8b8f02..27466ed8dae7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs @@ -163,29 +163,38 @@ public RollingUpgradePolicy() /// public virtual void Validate() { - if (MaxBatchInstancePercent > 100) + if (MaxBatchInstancePercent != null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxBatchInstancePercent", 100); + if (MaxBatchInstancePercent > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxBatchInstancePercent", 100); + } + if (MaxBatchInstancePercent < 5) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxBatchInstancePercent", 5); + } } - if (MaxBatchInstancePercent < 5) + if (MaxUnhealthyInstancePercent != null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxBatchInstancePercent", 5); + if (MaxUnhealthyInstancePercent > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxUnhealthyInstancePercent", 100); + } + if (MaxUnhealthyInstancePercent < 5) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxUnhealthyInstancePercent", 5); + } } - if (MaxUnhealthyInstancePercent > 100) + if (MaxUnhealthyUpgradedInstancePercent != null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxUnhealthyInstancePercent", 100); - } - if (MaxUnhealthyInstancePercent < 5) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxUnhealthyInstancePercent", 5); - } - if (MaxUnhealthyUpgradedInstancePercent > 100) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxUnhealthyUpgradedInstancePercent", 100); - } - if (MaxUnhealthyUpgradedInstancePercent < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxUnhealthyUpgradedInstancePercent", 0); + if (MaxUnhealthyUpgradedInstancePercent > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxUnhealthyUpgradedInstancePercent", 100); + } + if (MaxUnhealthyUpgradedInstancePercent < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxUnhealthyUpgradedInstancePercent", 0); + } } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs new file mode 100644 index 000000000000..4ac7cf0ab688 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetsReapplyHeaders.cs @@ -0,0 +1,51 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Reapply operation. + /// + public partial class VirtualMachineScaleSetsReapplyHeaders + { + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsReapplyHeaders class. + /// + public VirtualMachineScaleSetsReapplyHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineScaleSetsReapplyHeaders class. + /// + public VirtualMachineScaleSetsReapplyHeaders(string location = default(string)) + { + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs index b1faa12f1bfb..1754ee0f0858 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs @@ -1616,6 +1616,29 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ReapplyWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Shuts down all the virtual machines in the virtual machine scale set, moves /// them to a new node, and powers them back on. @@ -3787,6 +3810,193 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) return _result; } + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginReapplyWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vmScaleSetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmScaleSetName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2023-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReapply", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/reapply").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationHeaderResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Shuts down all the virtual machines in the virtual machine scale set, moves /// them to a new node, and powers them back on. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs index 0a336a613878..67884ab39192 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs @@ -693,6 +693,48 @@ public static IPage GetOSUpgradeHistory(th (await operations.StartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + public static VirtualMachineScaleSetsReapplyHeaders Reapply(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) + { + return operations.ReapplyAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + } + + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The cancellation token. + /// + public static async Task ReapplyAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReapplyWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + /// /// Shuts down all the virtual machines in the virtual machine scale set, moves /// them to a new node, and powers them back on. @@ -1484,6 +1526,48 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + public static VirtualMachineScaleSetsReapplyHeaders BeginReapply(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) + { + return operations.BeginReapplyAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + } + + /// + /// Reapplies the Virtual Machine Scale Set Virtual Machine Profile to the + /// Virtual Machine Instances + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The cancellation token. + /// + public static async Task BeginReapplyAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginReapplyWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + /// /// Shuts down all the virtual machines in the virtual machine scale set, moves /// them to a new node, and powers them back on. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetOperationalTests/TestVMScaleSetOperations_Reapply.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetOperationalTests/TestVMScaleSetOperations_Reapply.json new file mode 100644 index 000000000000..0e6b84d3bc9a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMScaleSetOperationalTests/TestVMScaleSetOperations_Reapply.json @@ -0,0 +1,1853 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac5614c7-c027-4885-a6f9-9cf7fcd68d49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "19a6b8e7-2f9b-4b25-aea4-718323f85895_133127902736261280" + ], + "x-ms-request-id": [ + "3ebbe80d-1828-419b-a4c5-17ec9f805c61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "58c49b4c-7cb0-4fb1-aaa3-d27bcea114d8" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181135Z:58c49b4c-7cb0-4fb1-aaa3-d27bcea114d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:11:34 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourcegroups/VMSSReapplyTestRG8621?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlZ3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"VMSSReapplyTestRG8621\": \"2023-03-15 18:11:34Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77f4093d-252a-480b-9927-d32c6aca4809" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5368d80c-c739-45bd-b10a-5334fc71ba74" + ], + "x-ms-correlation-request-id": [ + "5368d80c-c739-45bd-b10a-5334fc71ba74" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181138Z:5368d80c-c739-45bd-b10a-5334fc71ba74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:11:37 GMT" + ], + "Content-Length": [ + "252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621\",\r\n \"name\": \"VMSSReapplyTestRG8621\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"VMSSReapplyTestRG8621\": \"2023-03-15 18:11:34Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourcegroups/VMSSReapplyTestRG8621?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlZ3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a49fb956-1d87-4f44-b110-1292afe550a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "6b70caeb-9264-45c6-81ad-085d202127bb" + ], + "x-ms-correlation-request-id": [ + "6b70caeb-9264-45c6-81ad-085d202127bb" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181214Z:6b70caeb-9264-45c6-81ad-085d202127bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:14 GMT" + ], + "Content-Length": [ + "196" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621\",\r\n \"name\": \"VMSSReapplyTestRG8621\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Storage/storageAccounts/ReapplyTestVMSSSA9555?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL1JlYXBwbHlUZXN0Vk1TU1NBOTU1NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5eb63aa3-1c72-4344-84e9-1a95c84ad502" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d7be2825-b41a-45db-8a0a-8bec64aea2a0?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "d7be2825-b41a-45db-8a0a-8bec64aea2a0" + ], + "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": [ + "fb86f907-0583-47fb-a151-4f1141a8c2ca" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181144Z:fb86f907-0583-47fb-a151-4f1141a8c2ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:11:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d7be2825-b41a-45db-8a0a-8bec64aea2a0?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZDdiZTI4MjUtYjQxYS00NWRiLThhMGEtOGJlYzY0YWVhMmEwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04157e31-4e8f-45e8-b67b-37185d3abbfb" + ], + "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": [ + "b772a852-4cec-4869-bb8c-558c86b86734" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181202Z:b772a852-4cec-4869-bb8c-558c86b86734" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:01 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebc73793-4f2c-47a7-a831-a6689d533d8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "572035cb-d2b0-41c1-9110-414e98aab440" + ], + "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": [ + "7a26c9dc-b6e7-4d43-a49a-d9f0ef246cc7" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181212Z:7a26c9dc-b6e7-4d43-a49a-d9f0ef246cc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:12 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Storage/storageAccounts/reapplytestvmsssa9555\",\r\n \"name\": \"reapplytestvmsssa9555\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-03-15T18:11:42.1018015Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://reapplytestvmsssa9555.blob.core.windows.net/\",\r\n \"queue\": \"https://reapplytestvmsssa9555.queue.core.windows.net/\",\r\n \"table\": \"https://reapplytestvmsssa9555.table.core.windows.net/\",\r\n \"file\": \"https://reapplytestvmsssa9555.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Storage/storageAccounts/ReapplyTestVMSSSA9555?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL1JlYXBwbHlUZXN0Vk1TU1NBOTU1NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ef09505-c3a4-49b2-8851-91aa890f554b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b83069f-4514-4fe1-beb0-61db393b012e" + ], + "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": [ + "a81a2670-b2b4-44ba-8e34-086e8ecd875b" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181213Z:a81a2670-b2b4-44ba-8e34-086e8ecd875b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:12 GMT" + ], + "Content-Length": [ + "785" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Storage/storageAccounts/reapplytestvmsssa9555\",\r\n \"name\": \"reapplytestvmsssa9555\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-03-15T18:11:42.1018015Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://reapplytestvmsssa9555.blob.core.windows.net/\",\r\n \"queue\": \"https://reapplytestvmsssa9555.queue.core.windows.net/\",\r\n \"table\": \"https://reapplytestvmsssa9555.table.core.windows.net/\",\r\n \"file\": \"https://reapplytestvmsssa9555.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNDk0MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn497\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fc46d7c-2195-4252-b63b-5b6b31a6aaea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "d77da61b-e93e-454e-bb21-1f32b1f339e2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Network/locations/eastus2/operations/d77da61b-e93e-454e-bb21-1f32b1f339e2?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "550b9962-3ccf-48a2-b7d5-642db06c03e8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "d6346ad2-6c02-4df2-81ee-6961495a6d32" + ], + "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": [ + "SOUTHINDIA:20230315T181221Z:550b9962-3ccf-48a2-b7d5-642db06c03e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:21 GMT" + ], + "Content-Length": [ + "763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip4941\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941\",\r\n \"etag\": \"W/\\\"8611d34b-f84b-463f-af8b-32a05c7444fc\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a5dec66b-d3a3-4767-8a6e-6f9b2cca292d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn497\",\r\n \"fqdn\": \"dn497.eastus2.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/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Network/locations/eastus2/operations/d77da61b-e93e-454e-bb21-1f32b1f339e2?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Q3N2RhNjFiLWU5M2UtNDU0ZS1iYjIxLTFmMzJiMWYzMzllMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dcb4d8df-6420-45e3-86d7-be8c331d169c" + ], + "x-ms-correlation-request-id": [ + "c43d4636-e4f0-4cf0-b079-7ce8245c3fd4" + ], + "x-ms-arm-service-request-id": [ + "2a0e3837-2d13-402e-875e-84eac0305ffc" + ], + "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": [ + "SOUTHINDIA:20230315T181222Z:c43d4636-e4f0-4cf0-b079-7ce8245c3fd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:22 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNDk0MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2428b391-b392-4581-bc1f-51880be23859\"" + ], + "x-ms-request-id": [ + "d5382822-0b80-4c14-9bd0-8a4e482d9b31" + ], + "x-ms-correlation-request-id": [ + "9d0a668d-a5f7-443a-9873-8b859e061285" + ], + "x-ms-arm-service-request-id": [ + "f403ee5f-3dfe-4390-b9be-9aa165d86d0f" + ], + "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": [ + "SOUTHINDIA:20230315T181223Z:9d0a668d-a5f7-443a-9873-8b859e061285" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:23 GMT" + ], + "Content-Length": [ + "764" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip4941\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941\",\r\n \"etag\": \"W/\\\"2428b391-b392-4581-bc1f-51880be23859\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5dec66b-d3a3-4767-8a6e-6f9b2cca292d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn497\",\r\n \"fqdn\": \"dn497.eastus2.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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNDk0MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf910140-5906-44d6-9090-e8c90efd8f4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2428b391-b392-4581-bc1f-51880be23859\"" + ], + "x-ms-request-id": [ + "02ec81d0-96d5-40d9-b9b3-9cc76bc4c205" + ], + "x-ms-correlation-request-id": [ + "25fd084c-8be2-4db5-a3df-177b5bb9e4c9" + ], + "x-ms-arm-service-request-id": [ + "1e6870a7-1a98-49dc-8564-b82717cdd935" + ], + "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": [ + "SOUTHINDIA:20230315T181225Z:25fd084c-8be2-4db5-a3df-177b5bb9e4c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:24 GMT" + ], + "Content-Length": [ + "764" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip4941\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/publicIPAddresses/pip4941\",\r\n \"etag\": \"W/\\\"2428b391-b392-4581-bc1f-51880be23859\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5dec66b-d3a3-4767-8a6e-6f9b2cca292d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn497\",\r\n \"fqdn\": \"dn497.eastus2.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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMTA1MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "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\": \"sn431\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90a03cc1-299c-4c8b-b507-5309204c0816" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "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": [ + "24cf4a8f-6a34-4456-87d0-0e6c04c1dd9b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Network/locations/eastus2/operations/24cf4a8f-6a34-4456-87d0-0e6c04c1dd9b?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "1564b3e5-fd73-4e06-b81c-edf45e355ace" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "dc3968bc-a172-4d9f-8c03-eb18ee50cfc9" + ], + "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": [ + "SOUTHINDIA:20230315T181228Z:1564b3e5-fd73-4e06-b81c-edf45e355ace" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:27 GMT" + ], + "Content-Length": [ + "1330" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn1050\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050\",\r\n \"etag\": \"W/\\\"a13c69da-dd92-4260-91c6-00f126d046a8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d3477229-73e9-4d97-b092-4e025a6626e5\",\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\": \"sn431\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\",\r\n \"etag\": \"W/\\\"a13c69da-dd92-4260-91c6-00f126d046a8\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Network/locations/eastus2/operations/24cf4a8f-6a34-4456-87d0-0e6c04c1dd9b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI0Y2Y0YThmLTZhMzQtNDQ1Ni04N2QwLTBlNmMwNGMxZGQ5Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "46a83348-16b9-4db5-abd3-e31b767853e7" + ], + "x-ms-correlation-request-id": [ + "5f32554c-90da-419a-8aeb-bee92a2e286e" + ], + "x-ms-arm-service-request-id": [ + "029fd438-a84e-44f0-9186-97449296b309" + ], + "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": [ + "SOUTHINDIA:20230315T181232Z:5f32554c-90da-419a-8aeb-bee92a2e286e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:31 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMTA1MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"9a5eff41-d9b5-4c37-930c-b29ac26d94de\"" + ], + "x-ms-request-id": [ + "c52529e1-99be-402f-9ad3-a642eff01f03" + ], + "x-ms-correlation-request-id": [ + "6b703b14-99c9-47f7-8485-5e107164271b" + ], + "x-ms-arm-service-request-id": [ + "0815ad3d-dc65-4b9e-a99c-190d0858fcb5" + ], + "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": [ + "SOUTHINDIA:20230315T181232Z:6b703b14-99c9-47f7-8485-5e107164271b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:32 GMT" + ], + "Content-Length": [ + "1332" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn1050\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050\",\r\n \"etag\": \"W/\\\"9a5eff41-d9b5-4c37-930c-b29ac26d94de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3477229-73e9-4d97-b092-4e025a6626e5\",\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\": \"sn431\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\",\r\n \"etag\": \"W/\\\"9a5eff41-d9b5-4c37-930c-b29ac26d94de\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMTA1MC9zdWJuZXRzL3NuNDMxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8211145c-b01b-485b-a484-eaa1a55f66e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"9a5eff41-d9b5-4c37-930c-b29ac26d94de\"" + ], + "x-ms-request-id": [ + "1313a4fa-e798-4541-8d7a-a5f96688b810" + ], + "x-ms-correlation-request-id": [ + "472a1e6e-a543-4725-a440-04ea865dfd30" + ], + "x-ms-arm-service-request-id": [ + "0f065107-132b-42e0-a4b6-db71769b4442" + ], + "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": [ + "SOUTHINDIA:20230315T181233Z:472a1e6e-a543-4725-a440-04ea865dfd30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:33 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn431\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\",\r\n \"etag\": \"W/\\\"9a5eff41-d9b5-4c37-930c-b29ac26d94de\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNDMxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "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\": \"sn431\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\r\n }\r\n },\r\n \"name\": \"ip2118\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7297757-2ac9-4a00-845f-e8b01bca309b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "749" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b928065-68fe-40b5-ba98-51bf99774f36" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Network/locations/eastus2/operations/2b928065-68fe-40b5-ba98-51bf99774f36?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "3924d3c0-795b-428e-b5f5-75bdd5d659d5" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "769d877d-d724-4cd8-9ae9-6f737b1a140b" + ], + "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": [ + "SOUTHINDIA:20230315T181236Z:3924d3c0-795b-428e-b5f5-75bdd5d659d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:36 GMT" + ], + "Content-Length": [ + "1648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic4319\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef459578-bde8-490a-abd7-910ca1ba8dec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2118\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319/ipConfigurations/ip2118\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\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\": \"ffzepu5joolu1mesjybfuzrg2f.cx.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\": \"eastus2\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNDMxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"55424bad-a47b-48ef-8c53-bcee4074f30b\"" + ], + "x-ms-request-id": [ + "98783291-1ad5-4ec9-916d-227988af11fe" + ], + "x-ms-correlation-request-id": [ + "be20006b-6a30-4105-92af-71985352decf" + ], + "x-ms-arm-service-request-id": [ + "f14d6221-91f1-41e8-b1a7-238f7a0dc620" + ], + "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": [ + "SOUTHINDIA:20230315T181237Z:be20006b-6a30-4105-92af-71985352decf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:37 GMT" + ], + "Content-Length": [ + "1648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic4319\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef459578-bde8-490a-abd7-910ca1ba8dec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2118\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319/ipConfigurations/ip2118\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\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\": \"ffzepu5joolu1mesjybfuzrg2f.cx.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\": \"eastus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNDMxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d815b6a8-3cff-4346-b10f-3c50e54a1a36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"55424bad-a47b-48ef-8c53-bcee4074f30b\"" + ], + "x-ms-request-id": [ + "aab88ebc-d345-4d80-92fe-fc93632e06af" + ], + "x-ms-correlation-request-id": [ + "f1adc1f1-cf2b-44a3-b2fc-6700ac60352c" + ], + "x-ms-arm-service-request-id": [ + "b10295b5-341e-4248-a8ae-eb9287af90c7" + ], + "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": [ + "SOUTHINDIA:20230315T181238Z:f1adc1f1-cf2b-44a3-b2fc-6700ac60352c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:37 GMT" + ], + "Content-Length": [ + "1648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic4319\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef459578-bde8-490a-abd7-910ca1ba8dec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2118\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/networkInterfaces/nic4319/ipConfigurations/ip2118\",\r\n \"etag\": \"W/\\\"55424bad-a47b-48ef-8c53-bcee4074f30b\\\"\",\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/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\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\": \"ffzepu5joolu1mesjybfuzrg2f.cx.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\": \"eastus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493?api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvUmVhcHBseVRlc3RWTVNTODQ5Mz9hcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\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\": \"vmsstestnetconfig7690\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig4219\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\r\n },\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"overprovision\": false\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e75745fe-739f-4003-96bf-4ddd0f1a6863" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1641" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/125b902a-14f2-49ee-9704-c5222a5bcaa5?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "125b902a-14f2-49ee-9704-c5222a5bcaa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c8c649c0-2b05-4e87-9f17-0cb8660a6b64" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181246Z:c8c649c0-2b05-4e87-9f17-0cb8660a6b64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:45 GMT" + ], + "Content-Length": [ + "2574" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ReapplyTestVMSS8493\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\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 \"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 \"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 \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7690\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig4219\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"542c9457-dd55-48c4-bb26-e5e60f200efb\",\r\n \"timeCreated\": \"2023-03-15T23:42:44.0625988+05:30\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/125b902a-14f2-49ee-9704-c5222a5bcaa5?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEyNWI5MDJhLTE0ZjItNDllZS05NzA0LWM1MjIyYTViY2FhNT9wPTRkZTQyNjZkLWM5MTMtNDI4Yi1iZDMwLWEyYzIyYTlmMWZlYyZhcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "97" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d120a2d-5b4b-4e53-b07f-35d4b59d477e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "27c4a197-1f2f-421d-8ac4-84fc41eeb9a8" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20230315T181257Z:27c4a197-1f2f-421d-8ac4-84fc41eeb9a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:12:57 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2023-03-15T23:42:44.0625988+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"125b902a-14f2-49ee-9704-c5222a5bcaa5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/125b902a-14f2-49ee-9704-c5222a5bcaa5?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEyNWI5MDJhLTE0ZjItNDllZS05NzA0LWM1MjIyYTViY2FhNT9wPTRkZTQyNjZkLWM5MTMtNDI4Yi1iZDMwLWEyYzIyYTlmMWZlYyZhcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5181dd3d-54d5-4bb8-b351-b46d49a4ddb8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1abb8309-1575-4952-827f-7bea92aefb04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181435Z:1abb8309-1575-4952-827f-7bea92aefb04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:14:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2023-03-15T23:42:44.0625988+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"125b902a-14f2-49ee-9704-c5222a5bcaa5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/125b902a-14f2-49ee-9704-c5222a5bcaa5?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEyNWI5MDJhLTE0ZjItNDllZS05NzA0LWM1MjIyYTViY2FhNT9wPTRkZTQyNjZkLWM5MTMtNDI4Yi1iZDMwLWEyYzIyYTlmMWZlYyZhcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4a0cdda-242a-4e8e-ac72-e38fd408e51f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6bc1a02b-9e46-4431-a305-96e5a866ce2f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181613Z:6bc1a02b-9e46-4431-a305-96e5a866ce2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:13 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2023-03-15T23:42:44.0625988+05:30\",\r\n \"endTime\": \"2023-03-15T23:45:55.767988+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"125b902a-14f2-49ee-9704-c5222a5bcaa5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493?api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvUmVhcHBseVRlc3RWTVNTODQ5Mz9hcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a962f87-607c-4179-b6e5-fc2f348876aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7304d7ff-eb92-4f23-9d52-582923a16925" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181614Z:7304d7ff-eb92-4f23-9d52-582923a16925" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:13 GMT" + ], + "Content-Length": [ + "2575" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ReapplyTestVMSS8493\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\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 \"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 \"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 \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7690\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig4219\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"542c9457-dd55-48c4-bb26-e5e60f200efb\",\r\n \"timeCreated\": \"2023-03-15T23:42:44.0625988+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493?api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvUmVhcHBseVRlc3RWTVNTODQ5Mz9hcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aaa8e657-f6d7-4161-b28c-f0ab6dd7307a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9997070c-916d-498b-8d23-cf5ff69d67fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "5f48dda9-b03c-4041-9d71-f57569552636" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181614Z:5f48dda9-b03c-4041-9d71-f57569552636" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:14 GMT" + ], + "Content-Length": [ + "2575" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ReapplyTestVMSS8493\",\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\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 \"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 \"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 \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig7690\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig4219\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Network/virtualNetworks/vn1050/subnets/sn431\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"542c9457-dd55-48c4-bb26-e5e60f200efb\",\r\n \"timeCreated\": \"2023-03-15T23:42:44.0625988+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/resourceGroups/VMSSReapplyTestRG8621/providers/Microsoft.Compute/virtualMachineScaleSets/ReapplyTestVMSS8493/reapply?api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Jlc291cmNlR3JvdXBzL1ZNU1NSZWFwcGx5VGVzdFJHODYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvUmVhcHBseVRlc3RWTVNTODQ5My9yZWFwcGx5P2FwaS12ZXJzaW9uPTIwMjMtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e9631a3-a70e-4b4e-9710-a92115401f5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/a1da461d-5dbc-4624-b521-b60ef42f3647?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&monitor=true&api-version=2023-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/a1da461d-5dbc-4624-b521-b60ef42f3647?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1da461d-5dbc-4624-b521-b60ef42f3647" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a60b104a-3002-4809-9abb-7247f8fdc701" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181615Z:a60b104a-3002-4809-9abb-7247f8fdc701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/a1da461d-5dbc-4624-b521-b60ef42f3647?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ExZGE0NjFkLTVkYmMtNDYyNC1iNTIxLWI2MGVmNDJmMzY0Nz9wPTRkZTQyNjZkLWM5MTMtNDI4Yi1iZDMwLWEyYzIyYTlmMWZlYyZhcGktdmVyc2lvbj0yMDIzLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0bdd08f0-204e-453e-bbc4-f6e14386860e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6f7fa22f-0c86-42b0-a440-940e2c8f3c21" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181646Z:6f7fa22f-0c86-42b0-a440-940e2c8f3c21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:46 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2023-03-15T23:46:14.9556566+05:30\",\r\n \"endTime\": \"2023-03-15T23:46:24.1433044+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a1da461d-5dbc-4624-b521-b60ef42f3647\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/015bb170-1c58-405c-94f6-ad0e745242cc/providers/Microsoft.Compute/locations/eastus2/operations/a1da461d-5dbc-4624-b521-b60ef42f3647?p=4de4266d-c913-428b-bd30-a2c22a9f1fec&monitor=true&api-version=2023-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YmIxNzAtMWM1OC00MDVjLTk0ZjYtYWQwZTc0NTI0MmNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ExZGE0NjFkLTVkYmMtNDYyNC1iNTIxLWI2MGVmNDJmMzY0Nz9wPTRkZTQyNjZkLWM5MTMtNDI4Yi1iZDMwLWEyYzIyYTlmMWZlYyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1423.7309", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/60.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1076d65-e70d-40fb-9920-16bcadd4a3a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5c58cf1c-24ce-4053-842b-b511ceae4587" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20230315T181646Z:5c58cf1c-24ce-4053-842b-b511ceae4587" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Mar 2023 18:16:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "TestVMScaleSetOperations_Reapply": [ + "VMSSReapplyTestRG8621", + "ReapplyTestVMSS8493", + "ReapplyTestVMSSSA9555" + ], + "CreatePublicIP": [ + "pip4941", + "dn497" + ], + "CreateVNET": [ + "vn1050", + "sn431" + ], + "CreateNIC": [ + "nic4319", + "ip2118" + ], + "CreateDefaultVMScaleSetInput": [ + "crptestar3743", + "vmss9315", + "vmsstestnetconfig7690", + "vmsstestnetconfig4219" + ] + }, + "Variables": { + "SubscriptionId": "015bb170-1c58-405c-94f6-ad0e745242cc" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetOperationalTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetOperationalTests.cs index 4a8c5510b90c..1a397c0ed6ae 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetOperationalTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetOperationalTests.cs @@ -473,5 +473,48 @@ public void TestVMScaleSetOperations_ConvertToSinglePlacementGroup() Assert.True(passed); } } + + + /// + /// Covers following Operations: + /// Create RG + /// Create Storage Account + /// Create VMScaleSet + /// Reapply VMScaleSet + /// Delete RG + /// + [Fact] + public void TestVMScaleSetOperations_Reapply() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + string rgName = TestUtilities.GenerateName("VMSSReapplyTestRG"); + string vmssName = TestUtilities.GenerateName("ReapplyTestVMSS"); + string storageAccountName = TestUtilities.GenerateName("ReapplyTestVMSSSA"); + VirtualMachineScaleSet inputVMScaleSet; + bool passed = false; + + try + { + EnsureClientsInitialized(context); + + ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + StorageAccount storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); + + VirtualMachineScaleSet vmScaleSet = CreateVMScaleSet_NoAsyncTracking(rgName, vmssName, + storageAccountOutput, imageRef, out inputVMScaleSet, createWithManagedDisks: true); + + m_CrpClient.VirtualMachineScaleSets.Reapply(rgName, vmScaleSet.Name); + + passed = true; + } + finally + { + var deleteRgResponse = m_ResourcesClient.ResourceGroups.BeginDeleteWithHttpMessagesAsync(rgName); + } + + Assert.True(passed); + } + } } }